diff options
Diffstat (limited to 'scenes/introduction.gd')
-rw-r--r-- | scenes/introduction.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scenes/introduction.gd b/scenes/introduction.gd index 7db2651..e0e8767 100644 --- a/scenes/introduction.gd +++ b/scenes/introduction.gd @@ -1,8 +1,7 @@ extends Node -onready var textreveal = $TextReveal # Called when the node enters the scene tree for the first time. func _ready(): - textreveal.start() + $TextReveal.start() |