Layout_Hall.ts 879 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import { _decorator, Button, Component, EditBox, Label, Node, Prefab, Skeleton, sp } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_Hall')
  4. export class Layout_Hall extends Component {
  5. @property(Button)
  6. LLK_Btn: Button = null;
  7. @property(Button)
  8. Settings_Btn: Button = null;
  9. @property(Button)
  10. XXL_Btn: Button = null;
  11. @property(Button)
  12. Skin_Btn: Button = null;
  13. @property(Button)
  14. Life_Btn: Button = null;
  15. @property(Button)
  16. Rank_Btn: Button = null;
  17. @property(Label)
  18. Life_Num: Label = null;
  19. @property(Node)
  20. role: Node = null;
  21. @property([sp.SkeletonData])
  22. SkeletonData: sp.SkeletonData[] = [];
  23. spineSkeleton: sp.Skeleton = null;
  24. @property(Node)
  25. lifejian: Node=null;
  26. @property(Label)
  27. EndTime: Label = null;
  28. @property(Label)
  29. llkLabel: Label = null;
  30. }