1
Fork 0
mirror of https://github.com/Cookie-CHR/OfficeMadness-LD51.git synced 2024-11-22 06:44:18 +00:00
office-madness/Music/Muter.gd

18 lines
196 B
GDScript3
Raw Normal View History

2022-10-02 22:44:58 +00:00
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()