This commit is contained in:
2025-10-10 16:09:14 +08:00
parent 561b3c5eee
commit df9ca6bfaa
66 changed files with 7433 additions and 7779 deletions
@@ -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();
}
}