querysystem内部框架维护(不需要用户手动调用事件派发)

新增test覆盖测试
This commit is contained in:
YHH
2025-07-28 17:14:10 +08:00
parent ea06a9f07d
commit abec2b3648
11 changed files with 2934 additions and 11 deletions

View File

@@ -151,8 +151,8 @@ export class Core {
// 初始化对象池管理器
this._poolManager = PoolManager.getInstance();
Core.entitySystemsEnabled = this._config.enableEntitySystems || true;
this.debug = this._config.debug || true;
Core.entitySystemsEnabled = this._config.enableEntitySystems ?? true;
this.debug = this._config.debug ?? true;
// 初始化调试管理器
if (this._config.debugConfig?.enabled) {