This commit is contained in:
33333-33333 2026-07-18 22:15:26 +09:00
commit d163ceb291
76 changed files with 1385 additions and 524 deletions

View file

@ -84,6 +84,8 @@ class World { constructor() {
this.countsTimer = 0;
this.compactTimer = 0;
this.drawSortTimer = 0;
this._maintenanceScheduleReady = false;
this._nextTransientRuntimePruneAt = 0;
this.drawListDirty = true;
this.antUpdatePhase = 0;
this.selected = null;
@ -117,6 +119,8 @@ class World { constructor() {
this.relationNotices = {};
this.resolvedFightIds = {};
this.fightPairCooldowns = {};
this.ballCollisionMemo = new Map();
this.tarinaiCollisionMemo = new Map();
this.deadTarinaiSinceRuntimePrune = 0;
this.tarinaiRuntimePrunePending = false;
this._deadTarinaiIdsPendingCleanup = new Set();