| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { _decorator, Button, Component, EditBox, Label, Node, Prefab, Skeleton, sp } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Hall')
- export class Layout_Hall extends Component {
- @property(Button)
- LLK_Btn: Button = null;
- @property(Button)
- Settings_Btn: Button = null;
- @property(Button)
- XXL_Btn: Button = null;
- @property(Button)
- Skin_Btn: Button = null;
- @property(Button)
- Life_Btn: Button = null;
- @property(Button)
- Rank_Btn: Button = null;
- @property(Label)
- Life_Num: Label = null;
- @property(Node)
- role: Node = null;
- @property([sp.SkeletonData])
- SkeletonData: sp.SkeletonData[] = [];
- spineSkeleton: sp.Skeleton = null;
- @property(Node)
- lifejian: Node=null;
- @property(Label)
- EndTime: Label = null;
- @property(Label)
- llkLabel: Label = null;
- }
|