more sound effects and polish
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 12s
Create tag and build when new code gets to main / Export (push) Successful in 1m35s

This commit is contained in:
2026-02-01 15:45:56 +01:00
parent 17874619ce
commit b775c73ffa
33 changed files with 305 additions and 22 deletions

View File

@@ -52,11 +52,11 @@ func cycle_through_items() -> void:
elif item is CharacterResource:
label.text = item.name + "\n\nTraits\n"
for guest_trait: Trait in item.traits:
label.text += guest_trait.name + ", "
label.text += guest_trait.name + "\n"
label.text += "\n\nPreferences\n"
for other_trait in item.preferences:
var pref = item.preferences[other_trait]
label.text += pref_score_name[pref] + other_trait.name + ", "
label.text += pref_score_name[pref] + other_trait.name + "\n"
func _on_mouse_entered() -> void: