战斗系统也去掉,直接用脚本进行控制就好

This commit is contained in:
2025-02-03 22:34:29 +08:00
parent 83c4b6ec3d
commit 8cdd6aaa21
15 changed files with 0 additions and 295 deletions

View File

@@ -1,15 +1,9 @@
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { HeroSkillSystem } from "./HeroSkillSystem";
import { BattleEndSystem } from "../battle/BattleEndSystem";
import { BattleStartSystem } from "../battle/BattleStartSystem";
import { BattlePhaseSystem } from "../battle/BattlePhaseSystem";
export class EcsSkillSystem extends ecs.System {
constructor() {
super();
this.add(new HeroSkillSystem());
this.add(new BattleStartSystem());
this.add(new BattlePhaseSystem());
this.add(new BattleEndSystem());