1234567891011121314151617181920212223242526272829 |
- import { _decorator, Button, Component, Label, Node } from 'cc';
- import { Container_Manager } from 'db://assets/Scripts/Container_Manager';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Main')
- export class Layout_Main extends Component {
- @property(Button)
- Pause_Btn: Button = null;
- @property(Button)
- Rules_Btn: Button = null;
- @property(Label)
- Level: Label = null;
- @property(Label)
- Remain_Cube_Des: Label = null;
- @property(Label)
- Count_Down_Des: Label = null;
- @property(Button)
- Eliminate_Btn: Button = null;
- @property(Button)
- Shuffle_Btn: Button = null;
- @property(Button)
- Empty_Btn: Button = null;
- time:number;
- Container:Container_Manager
- }
|