1.5
This commit is contained in:
parent
c9dd7182aa
commit
acf93ec6df
22 changed files with 320 additions and 261 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue