update
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { _decorator, Component, Node, tween, UIOpacity, Vec3 } from "cc";
|
||||
import li_BaseView from "../../../Main/Common/li_BaseView";
|
||||
const { ccclass, property } = _decorator;
|
||||
|
||||
@ccclass("ReleasePanel")
|
||||
export class ReleasePanel extends li_BaseView {
|
||||
onLoadCT(): void {
|
||||
this.scheduleOnce(this.autoClose, 1);
|
||||
}
|
||||
|
||||
private autoClose() {
|
||||
this.closePanel();
|
||||
}
|
||||
|
||||
private closePanel() {
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user