ok, working now, wanna just get unbinding working

This commit is contained in:
JHDev2006
2025-09-29 14:57:22 +01:00
parent 00015d2650
commit 99b9de4dad
5 changed files with 36 additions and 28 deletions

View File

@@ -400,9 +400,9 @@ func handle_tile_cursor() -> void:
if current_state == EditorState.IDLE:
if Input.is_action_just_pressed("scroll_up"):
selected_tile_index += 1
if Input.is_action_just_pressed("scroll_down"):
selected_tile_index -= 1
if Input.is_action_just_pressed("scroll_down"):
selected_tile_index += 1
if Input.is_action_just_pressed("editor_copy"):
copy_node(tile_position)