mirror of
https://github.com/Cookie-CHR/OfficeMadness-LD51.git
synced 2024-11-21 22:34:19 +00:00
16 lines
304 B
GDScript
16 lines
304 B
GDScript
extends AudioStreamPlayer
|
|
|
|
|
|
|
|
func _play(sound):
|
|
volume_db = 2
|
|
self.stream = load("res://Music/"+sound+".mp3")
|
|
if(not Muter.get_mute()):
|
|
play()
|
|
|
|
if connect("finished", self, "reset_to_default"):
|
|
print("An error has occurred: could not connect the sound")
|
|
|
|
|
|
func reset_to_default():
|
|
queue_free()
|