From 666ded7b8946c8ac11bd6b12aaa2735aefa53fee Mon Sep 17 00:00:00 2001 From: YHH <359807859@qq.com> Date: Thu, 19 Jun 2025 15:43:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E5=8F=AA=E5=9C=A8?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E7=9C=9F=E6=AD=A3=E5=BC=80=E5=A7=8B=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=97=B6=E6=89=A7=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ECS/Systems/EntitySystem.ts | 1 - 1 file changed, 1 deletion(-) 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;