Skip to content

Commit

Permalink
πŸ› Fix black screen
Browse files Browse the repository at this point in the history
  • Loading branch information
bal7hazar committed Dec 15, 2024
1 parent 6f2e1cc commit bdc50a8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/three/scenes/HexagonScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,11 @@ export abstract class HexagonScene {
this.updateLights();
this.updateHighlightPulse();
this.biomeModels.forEach((biome) => {
biome.updateAnimations(deltaTime);
try {
biome.updateAnimations(deltaTime);
} catch (error) {
console.error(`Error updating biome animations:`, error);
}
});
}

Expand Down

0 comments on commit bdc50a8

Please sign in to comment.