Player zoom

This commit is contained in:
2025-08-28 01:12:00 +08:00
parent 359e1532d2
commit 4ab6271e16
3 changed files with 84 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ public partial class NaturalResourceGenerator : Node2D
{
// Create a copy of ground tiles for iteration
var groundTilesToProcess = new List<Vector2I>(_groundTiles);
// Place stone veins
foreach (var cell in groundTilesToProcess)
{
@@ -64,7 +64,7 @@ public partial class NaturalResourceGenerator : Node2D
// Create a copy of stone tiles for iteration
var stoneTilesToProcess = new List<Vector2I>(_stoneTiles);
// Place iron veins within stone
foreach (var stoneCell in stoneTilesToProcess)
{