1234567891011121314151617 |
- import { _decorator, Component, Node } from 'cc';
- import { gui } from '../../core/ui/ui';
- import { UI_Hall } from '../ui/UI_Hall/UI_Hall';
- const { ccclass, property } = _decorator;
- @ccclass('Hall_Root')
- export class Hall_Root extends Component {
- start() {
- gui.show(UI_Hall);
- }
- update(deltaTime: number) {
-
- }
- }
|