mirror of
https://github.com/Cookie-CHR/LD54-SPAce-ltd.git
synced 2024-11-23 15:54:18 +00:00
18 lines
302 B
GDScript3
18 lines
302 B
GDScript3
|
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
|