去掉碰撞系统
This commit is contained in:
11
assets/script/game/skill/EcsSkillSystem.ts
Normal file
11
assets/script/game/skill/EcsSkillSystem.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
|
||||
import { SkillSystem } from "./SkillSystem";
|
||||
import { SkillAnimationSystem } from "./SkillAnimation";
|
||||
export class EcsSkillSystem extends ecs.System {
|
||||
constructor() {
|
||||
super();
|
||||
this.add(new SkillSystem());
|
||||
this.add(new SkillAnimationSystem());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user