1
Fork 0
mirror of https://github.com/Cookie-CHR/LD54-SPAce-ltd.git synced 2024-11-23 07:44:20 +00:00
space-ltd/Music/Music_Changer.gd
Cookie 57509881c7
✏️ Graphics and music
Main upload is now complete! I hope
2023-10-15 18:48:24 +02:00

10 lines
322 B
GDScript

extends AudioStreamPlayer2D
var choice = { "Title": "res://Music/Space Jazz.mp3",\
"Main": "res://Music/Groove Grove.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])