mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-27 08:05:42 +00:00
15 lines
242 B
GDScript
15 lines
242 B
GDScript
extends Control
|
|
|
|
func _ready():
|
|
_get_nodes()
|
|
_connect_signals()
|
|
|
|
func _connect_signals() -> void:
|
|
%sound_button.pressed.connect(sound_off)
|
|
|
|
func _get_nodes() -> void:
|
|
pass
|
|
|
|
func sound_off() -> void:
|
|
class_functions.sound_effects = false
|