This commit is contained in:
33333-33333 2026-07-01 22:59:49 +09:00
commit acf93ec6df
22 changed files with 320 additions and 261 deletions

View file

@ -38,7 +38,11 @@
worldRef.updateWeather(dt);
worldRef.updateTemperature?.(dt);
worldRef.updateTerrainDirtyState?.(dt);
worldRef.evaluateColonyMood?.();
const now = worldRef.time || 0;
if (now >= (worldRef.nextColonyMoodEvaluateAt || 0)) {
worldRef.nextColonyMoodEvaluateAt = now + 0.65;
worldRef.evaluateColonyMood?.();
}
}
function prepareSpatialFrame(worldRef) {