召唤逻辑改变

This commit is contained in:
2025-06-03 16:34:27 +08:00
parent b66c69d925
commit 899613c689
8 changed files with 943 additions and 804 deletions

View File

@@ -1,4 +1,4 @@
import { _decorator } from "cc";
import { _decorator, v3 } from "cc";
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { CCComp } from "../../../../extensions/oops-plugin-framework/assets/module/common/CCComp";
import { GameEvent } from "../common/config/GameEvent";
@@ -12,19 +12,25 @@ export class CardsCompComp extends CCComp {
/** 视图层逻辑代码分离演示 */
start() {
// var entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
this.on(GameEvent.FightReady, this.onHandler, this);
this.on(GameEvent.HeroSkillSelect, this.show, this);
this.on(GameEvent.HeroSkillSelectEnd, this.hide, this);
this.on(GameEvent.HeroSelect, this.show, this);
this.on(GameEvent.HeroSelectEnd, this.hide, this);
this.on(GameEvent.CardRefresh, this.show, this);
this.on(GameEvent.CardRefreshEnd, this.hide, this);
}
/** 全局消息逻辑处理 */
private onHandler(event: string, args: any) {
switch (event) {
case GameEvent.FightReady:
break;
}
show(){
this.node.setPosition(v3(0,640,0))
}
hide(){
this.node.setPosition(v3(0,-1000,0))
}
/** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */
reset() {
this.node.destroy();
}
}