mirror of
https://github.com/Cookie-CHR/OfficeMadness-LD51.git
synced 2024-11-25 08:04:19 +00:00
20 lines
398 B
GDScript3
20 lines
398 B
GDScript3
|
extends AudioStreamPlayer
|
||
|
|
||
|
var curr_music = "res://Music/Menu/Suonatore di Liuto.mp3"
|
||
|
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
volume_db = -2
|
||
|
if(not Muter.mute):
|
||
|
play()
|
||
|
|
||
|
func change_music (new_music):
|
||
|
if new_music != "":
|
||
|
if curr_music != new_music:
|
||
|
curr_music = new_music
|
||
|
stop()
|
||
|
set_stream(load(new_music))
|
||
|
if(not Muter.mute):
|
||
|
play()
|