This commit is contained in:
2026-03-04 11:07:13 -08:00
parent 4742ed003c
commit a4cc5e8f5f
985 changed files with 3858 additions and 1206 deletions

View File

@@ -58,7 +58,5 @@ func _input(event):
if event.is_action_released("quit"):
get_tree().quit()
if event.is_action_released("right_click"):
cursor_index = cursor_index +1
if cursor_index >= cursors.size():
cursor_index = 0
Input.set_custom_mouse_cursor(cursors[cursor_index])
ActionState.current_action = (ActionState.current_action + 1) % 4
Input.set_custom_mouse_cursor(cursors[ActionState.current_action])