|
|
@@ -1,3 +1,10 @@
|
|
|
+/*
|
|
|
+ * @Author: mojunshou 1637302775@qq.com
|
|
|
+ * @Date: 2025-03-20 15:01:09
|
|
|
+ * @LastEditors: mojunshou 1637302775@qq.com
|
|
|
+ * @LastEditTime: 2025-03-20 15:14:13
|
|
|
+ * @Description: 消除游戏主场景
|
|
|
+ */
|
|
|
import { _decorator } from "cc";
|
|
|
import { ecs } from "db://oops-framework/libs/ecs/ECS";
|
|
|
import { CCComp } from "db://oops-framework/module/common/CCComp";
|
|
|
@@ -11,10 +18,22 @@ export class eliminateViewComp extends CCComp {
|
|
|
/** 视图层逻辑代码分离演示 */
|
|
|
start() {
|
|
|
// const entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
|
|
|
+ this.setButton();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/** 视图对象通过 ecs.Entity.remove(eliminateViewComp) 删除组件是触发组件处理自定义释放逻辑 */
|
|
|
reset() {
|
|
|
this.node.destroy();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ private btn_setting() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
}
|