mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
8 lines
171 B
GDScript
8 lines
171 B
GDScript
extends CheckBox
|
|
|
|
func _ready():
|
|
pressed = GameStats.camera_fx
|
|
|
|
func _on_CameraFXButton_toggled(button_pressed):
|
|
GameStats.camera_fx = button_pressed
|
|
Saves.save_game()
|