mirror of
https://github.com/Cookie-CHR/LD54-SPAce-ltd.git
synced 2024-11-23 07:44:20 +00:00
57509881c7
Main upload is now complete! I hope
17 lines
196 B
GDScript
17 lines
196 B
GDScript
extends Node
|
|
|
|
var mute = false
|
|
|
|
func _ready():
|
|
pass;
|
|
|
|
func get_mute():
|
|
return mute
|
|
|
|
func mute_unmute():
|
|
if (mute):
|
|
mute = false
|
|
MusicPlayer.play()
|
|
else:
|
|
mute = true
|
|
MusicPlayer.stop()
|