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

@ -0,0 +1,13 @@
"use strict";
// Layer: simulation/system-effects
// Owns frame updates for transient visual/effect entities.
(function (global) {
function updateEffects(worldRef, dt) {
for (const ef of worldRef.effects) ef.update(dt);
}
global.TarinaiEffectsSimulationSystem = Object.freeze({
phases: Object.freeze({ updateEffects }),
});
})(typeof window !== "undefined" ? window : globalThis);