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