tiger-cleanup #1

Merged
tiger merged 97 commits from tiger-cleanup into development 2026-01-15 14:54:23 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit a0272ec3f2 - Show all commits

View File

@ -208,12 +208,16 @@ func transition():
fill_post_slots()
await anim_players[0].animation_finished
if selection_state != POSTS:
show_posts()
elif selection_state == POSTS_SELECTED:
var out_str:Array[StringName] = []
for card in output:
out_str.append(card.text if card.text != "" else "c_void")
cards_picked.emit(out_str)
selection_state = DONE
Scenes.finish_sequence(self)
@ -221,7 +225,6 @@ func transition():
func show_posts():
for player:AnimationPlayer in anim_players:
player.play("RESET")
await get_tree().create_timer(.5).timeout
selection_state = POSTS