This commit is contained in:
33333-33333 2026-06-26 12:46:32 +09:00
commit 86226ccc94
97 changed files with 5790 additions and 2307 deletions

View file

@ -132,9 +132,9 @@
},
update(dt) {
const phases = window.TarinaiWorldUpdatePhases;
if (!phases?.update) throw new Error("TarinaiWorldUpdatePhases is not available");
phases.update(this, dt);
const simulation = window.TarinaiSimulation;
if (!simulation?.update) throw new Error("TarinaiSimulation is not available; TarinaiWorldUpdatePhases cannot be reached");
return simulation.update(this, dt);
},
sanitizeOutOfBounds() {