summaryrefslogtreecommitdiff
path: root/Stages/course_01.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-09-30 23:57:13 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-09-30 23:57:13 +0200
commit6f212af9dd2586317a128626e7524c51edcd545d (patch)
treeb5032a1af83af402e48fe2824002b578fa334ca1 /Stages/course_01.gd
initial commitHEADmain
Diffstat (limited to 'Stages/course_01.gd')
-rw-r--r--Stages/course_01.gd11
1 files changed, 11 insertions, 0 deletions
diff --git a/Stages/course_01.gd b/Stages/course_01.gd
new file mode 100644
index 0000000..d76bc05
--- /dev/null
+++ b/Stages/course_01.gd
@@ -0,0 +1,11 @@
+extends Node2D
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ $AudioStreamPlayer.play()
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(_delta: float) -> void:
+ pass