More art assets and implemented names and jobs.

This commit is contained in:
2025-08-01 16:10:31 -04:00
parent 697677cf86
commit 110d390755
22 changed files with 3105 additions and 21 deletions

View File

@@ -13,6 +13,15 @@ var interaction_target = null
var last_position : Vector2 = Vector2.ZERO
var stuck : bool = false
var stuck_time_remaining : float = 0
var busy : bool = false
var _activity : String = ""
var activity : String :
get:
return _activity
set(value):
_activity = value
if profile_popup:
profile_popup.change_activity(_activity)
@onready var bubble : SpeechBubble = $SpeechBubble
@export var interaction_range : float = 75
@export var stop_range : float = 25
@@ -85,7 +94,7 @@ func _on_nav_agent_finished() -> void:
func _on_mouse_entered() -> void:
profile_popup = popup_template.instantiate()
add_child(profile_popup)
profile_popup.setup(data.name, data.level, data.job, "Nothing")
profile_popup.setup(data.name, data.level, data.job.name, activity)
func _on_mouse_exited() -> void: