deleted demo task and added placable extractors
Build Godot Project (Linux) / build-linux (push) Successful in 28s

This commit is contained in:
2026-06-22 16:34:38 -06:00
parent 2d2485910f
commit 9d003b03d8
11 changed files with 194 additions and 36 deletions
-1
View File
@@ -3,7 +3,6 @@ extends TileMapLayer
@onready var camera: Camera2D = $"../main_game_camera"
@export var render_radius: int = 20 # How many tiles out from the center to draw
var tile_size: Vector2i = Vector2i(32, 32) # Change this to your actual asset square size (e.g., 32x32, 64x64)
# Keep track of which grid coordinates we've already loaded
var loaded_tiles: Dictionary = {}