mirror of
https://github.com/Cookie-CHR/LD54-SPAce-ltd.git
synced 2024-11-21 23:14:18 +00:00
57509881c7
Main upload is now complete! I hope
17 lines
302 B
GDScript
17 lines
302 B
GDScript
extends AudioStreamPlayer
|
|
|
|
func _ready():
|
|
if self.connect("finished", reset_to_default):
|
|
print("An error has occurred: could not connect the sound")
|
|
|
|
func _play(sound):
|
|
volume_db = 2
|
|
self.stream = load("res://Music/"+sound+".mp3")
|
|
if(not Muter.mute):
|
|
play()
|
|
|
|
|
|
|
|
|
|
func reset_to_default():
|
|
pass
|