开始英雄技能系统,负责英雄技能的释放

This commit is contained in:
2025-02-02 17:18:32 +08:00
parent 00148863ad
commit 215fcd3a76
14 changed files with 56 additions and 484 deletions

View File

@@ -16,7 +16,6 @@ import { HeroViewComp } from "./HeroViewComp";
import { BoxSet } from "../common/config/BoxSet";
import { RandomManager } from "../../../../extensions/oops-plugin-framework/assets/core/common/random/RandomManager";
import { HeroInfo } from "../common/config/heroSet";
import { MoveToComp } from "../common/ecs/position/MoveTo";
import { Talents } from "../common/config/TalentSet";
import { MonModelComp } from "./MonModelComp";
import { BattleMoveComp } from "../common/ecs/position/BattleMoveComp";
@@ -36,7 +35,6 @@ export class Monster extends ecs.Entity {
destroy(): void {
this.remove(HeroViewComp);
this.remove(MoveToComp);
super.destroy();
}