You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
554 B
30 lines
554 B
|
|
//*********************
|
|
// create by 流云
|
|
// time: Mon Apr 27 2026
|
|
// desc:
|
|
//*********************
|
|
import { _decorator, Component, Node , find} from 'cc';
|
|
import { Auto_ui_upLevel } from './Auto_ui_upLevel';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('UIui_upLevel')
|
|
export class UIui_upLevel extends Auto_ui_upLevel {
|
|
|
|
onLoad(): void {
|
|
super.onLoad();
|
|
}
|
|
|
|
onEnable(): void {
|
|
super.onEnable();
|
|
}
|
|
|
|
onDisable(): void {
|
|
super.onDisable();
|
|
}
|
|
|
|
onInit(): void {
|
|
|
|
}
|
|
}
|
|
|