diff --git a/src/ECS/Systems/EntitySystem.ts b/src/ECS/Systems/EntitySystem.ts index a302b023..fb149ae6 100644 --- a/src/ECS/Systems/EntitySystem.ts +++ b/src/ECS/Systems/EntitySystem.ts @@ -77,7 +77,6 @@ export abstract class EntitySystem implements ISystemBase { constructor(matcher?: Matcher) { this._matcher = matcher ? matcher : Matcher.empty(); this._systemName = this.constructor.name; - this.initialize(); } private _scene!: Scene;