1
Fork 0
mirror of https://github.com/Cookie-CHR/OfficeMadness-LD51.git synced 2024-11-25 16:14:19 +00:00
office-madness/Music/Music_Changer.gd

11 lines
320 B
GDScript3
Raw Normal View History

2022-10-02 22:44:58 +00:00
extends AudioStreamPlayer
var choice = { "Title": "res://Music/Crinoline Dreams.mp3",\
"Main": "res://Music/Deuces.mp3",\
}
func _ready():
# I usually change music at the pressing of a button, but sometimes it is not possible
if self.name in choice.keys():
MusicPlayer.change_music(choice[self.name])