修改代码模板,兼容新版框架

This commit is contained in:
dgflash
2025-09-22 17:34:27 +08:00
parent f7f63c92db
commit 33e7a16604
10 changed files with 40 additions and 48 deletions

View File

@@ -3,21 +3,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.TemplateView = void 0;
exports.TemplateView = `import { _decorator } from "cc";
import { ecs } from "db://oops-framework/libs/ecs/ECS";
import { CCComp } from "db://oops-framework/module/common/CCComp";
import { CCView } from "db://oops-framework/module/common/CCView";
const { ccclass, property } = _decorator;
/** 视图层对象 */
@ccclass('<%Name%>Comp')
@ecs.register('<%Name%>', false)
export class <%Name%>Comp extends CCComp {
/** 视图层逻辑代码分离演示 */
start() {
// const entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
}
export class <%Name%>Comp extends CCView<<%ModuleName%>> {
/** 视图对象通过 ecs.Entity.remove(<%Name%>Comp) 删除组件是触发组件处理自定义释放逻辑 */
reset() {
this.node.destroy();
}
}`;