初始化只在系统真正开始工作时执行

This commit is contained in:
YHH
2025-06-19 15:43:22 +08:00
parent 73a882f75e
commit 666ded7b89

View File

@@ -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;