Files
18xchat/assets/Scripts/chat18x/ui/panels/ReleasePanel.ts
T

19 lines
419 B
TypeScript
Raw Normal View History

2025-10-10 16:09:14 +08:00
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();
}
}