4.6 upgrade, right click quick move, fixed credits, fixed play again

This commit is contained in:
Tabby 2026-01-28 15:27:00 +11:00
parent cc57d2904b
commit c711ed4aa9
4 changed files with 40 additions and 28 deletions

View file

@ -45,8 +45,8 @@ func _process(delta: float) -> void:
func goto_ewaste():
selection_indicator.reparent(ewaste_button)
selection_indicator.position = Vector2(0,0)
if current_location == Location.ewaste:
return
#if current_location == Location.ewaste:
#return
current_location = Location.ewaste
get_tree().change_scene_to_file("res://scenes/ewaste.tscn")
@ -61,7 +61,7 @@ func goto_workshop():
func goto_room():
selection_indicator.reparent(room_button)
selection_indicator.position = Vector2(0,0)
if current_location == Location.room:
return
#if current_location == Location.room:
#return
current_location = Location.room
get_tree().change_scene_to_file("res://scenes/room.tscn")