123456789101112131415161718192021222324252627282930313233343536373839 |
- import { _decorator, Component, Node } from 'cc';
- import { UIBase, UIType } from '../GameFrameWork/UIBase';
- import { UIMgr } from '../../Frames/UIManager';
- const { ccclass, property } = _decorator;
- @ccclass('Start')
- export class Start extends UIBase {
- protected onStart() {
- this.onBtnClick("_btnStart", this._btnStart);
- this.onBtnClick("_btnMusic", this._btnMusic);
- }
- update(deltaTime: number) {
- }
- private _btnStart() {
- this.hide(false);
-
-
-
-
- }
- private _btnMusic() {
-
-
-
-
-
-
- }
-
-
-
- }
|