diff options
Diffstat (limited to 'Scenes/Dungeon.gd')
-rw-r--r-- | Scenes/Dungeon.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Scenes/Dungeon.gd b/Scenes/Dungeon.gd index ae758ce..556134e 100644 --- a/Scenes/Dungeon.gd +++ b/Scenes/Dungeon.gd @@ -35,6 +35,11 @@ func intro_animation(): $UIController.hand_animation() yield(get_tree().create_timer(1.1), "timeout") player.show() + + if Global.onboarding: + yield($UIController.on_onboarding(), "completed") + Global.onboarding = false + block_input = false func end_animation(): |