diff options
author | rom <romangraef@gmail.com> | 2021-04-25 15:38:57 +0200 |
---|---|---|
committer | rom <romangraef@gmail.com> | 2021-04-25 15:41:42 +0200 |
commit | a8d0cd8b68131251cf07fff6fd01817012f23d8a (patch) | |
tree | d7830ee11ca91c13308c5b6fb5e8c38b9c09c727 /scenes/introduction.gd | |
parent | 65da988ee9536858ef9975becb739ba24c695aea (diff) | |
download | ldjam48-a8d0cd8b68131251cf07fff6fd01817012f23d8a.tar.gz ldjam48-a8d0cd8b68131251cf07fff6fd01817012f23d8a.tar.bz2 ldjam48-a8d0cd8b68131251cf07fff6fd01817012f23d8a.zip |
base level loading
Diffstat (limited to 'scenes/introduction.gd')
-rw-r--r-- | scenes/introduction.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scenes/introduction.gd b/scenes/introduction.gd index ad898f2..383091b 100644 --- a/scenes/introduction.gd +++ b/scenes/introduction.gd @@ -1,4 +1,4 @@ -extends Node +extends Level # Called when the node enters the scene tree for the first time. @@ -10,7 +10,7 @@ func _ready(): func _on_TextReveal_finished_reveal(): $Continue.visible = true - + $Skip.visible = false func _on_Button_on_click(): |