diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2022-07-17 04:24:00 -0300 |
---|---|---|
committer | Henrique Alves <henriquelalves@gmail.com> | 2022-07-17 04:24:00 -0300 |
commit | 5b55438f5805d18bba0b5b773e3af3a2fd3858ea (patch) | |
tree | 00f0cf15c30358c69d55bc4b1d62e8636b90842e /Scenes/Dungeon.gd | |
parent | 2babce369e4fdfc96328da97d48dd238381cb2e6 (diff) | |
download | gamejam-gmtk-2022-5b55438f5805d18bba0b5b773e3af3a2fd3858ea.tar.gz gamejam-gmtk-2022-5b55438f5805d18bba0b5b773e3af3a2fd3858ea.tar.bz2 gamejam-gmtk-2022-5b55438f5805d18bba0b5b773e3af3a2fd3858ea.zip |
onboarding
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(): |