gotta go fast, hit that BLJgit status

This commit is contained in:
Haze Weathers 2024-12-07 21:58:34 -05:00
parent b54e9272c6
commit 32189c29a4
10 changed files with 115 additions and 6 deletions

View file

@ -13,6 +13,7 @@ onready var select_tab: HBoxContainer = $"%SelectTab"
# options nodes
onready var rumble: HBoxContainer = $"%SelectRumble"
onready var gore: HBoxContainer = $"%SelectGore"
onready var speedrun_timer: HBoxContainer = $"%SelectSpeedrunTimer"
onready var fullscreen: HBoxContainer = $"%SelectFullscreen"
onready var window_size: HBoxContainer = $"%SelectWindowSize"
onready var scaling: HBoxContainer = $"%SelectScaling"
@ -47,6 +48,7 @@ func _init_values() -> void:
# game
rumble.selection = Options.rumble
gore.selection = Options.gore
speedrun_timer.selection = 1 if Options.speedrun_timer else 0
# video
fullscreen.selection = 1 if Options.fullscreen else 0
window_size.selection = int(Options.window_size) - 1
@ -81,6 +83,9 @@ func _on_Rumble_selected(selection) -> void:
func _on_Gore_selected(selection) -> void:
Options.gore = selection
func _on_SelectSpeedrunTimer_selected(selection) -> void:
Options.speedrun_timer = selection == 1
#
# VIDEO