Work on full profile and on switching the window state

This commit is contained in:
2025-08-07 10:24:47 -04:00
parent fb312401cd
commit ed4ddfdf5d
8 changed files with 163 additions and 4 deletions

View File

@@ -55,7 +55,7 @@ func approach(pos : Vector2) -> void:
func approach_and_interact(obj : Interactable) -> void:
var t : Vector2 = obj.global_position
if obj.has("queue") and obj.queue != null:
if "queue" in obj and obj.queue != null:
t = obj.queue.global_position
set_movement_target(obj.global_position)
nav_agent.target_desired_distance = interaction_range - 5