r3-next/levels/abstract.gd

18 lines
394 B
GDScript3
Raw Normal View History

2023-10-24 22:23:46 +02:00
extends Node2D
# Called when the node enters the scene tree for the first time.
var bgsound := AudioStreamPlayer.new()
func _ready():
add_child(bgsound)
2023-11-23 20:19:21 +01:00
var titlemusic = load("res://music/truth.wav")
2023-10-24 22:23:46 +02:00
bgsound.stream = titlemusic
bgsound.play(0)
#pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass