From 7dddb29d1c4a4f299b3c723dbfa57621f333fe29 Mon Sep 17 00:00:00 2001 From: David Kotnik Date: Sat, 27 Dec 2025 12:52:50 +0100 Subject: [PATCH] Update GameScene background color to grass green --- src/scenes/GameScene.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scenes/GameScene.js b/src/scenes/GameScene.js index 791bbdde4..b6d886622 100644 --- a/src/scenes/GameScene.js +++ b/src/scenes/GameScene.js @@ -27,8 +27,8 @@ class GameScene extends Phaser.Scene { const width = this.cameras.main.width; const height = this.cameras.main.height; - // Setup kamere - SVETLO SIVO OZADJE! - this.cameras.main.setBackgroundColor('#c8c8c8'); + // Setup kamere - TRAVNATO ZELENO OZADJE! + this.cameras.main.setBackgroundColor('#7cfc00'); // Initialize Isometric Utils this.iso = new IsometricUtils();