choppy firebars

This commit is contained in:
JHDev2006
2025-09-24 12:01:48 +01:00
parent b93beefd4f
commit 44a65fe79d
6 changed files with 482 additions and 394 deletions

View File

@@ -61,7 +61,8 @@ var file := {
"bridge_animation": 0,
"visible_timers": 0,
"transition_animation": 0,
"colour_pipes": 1
"colour_pipes": 1,
"firebar_style": 0
},
"difficulty":
{

View File

@@ -48,6 +48,9 @@ func transition_style_changed(new_value := 0) -> void:
Global.fade_transition = bool(new_value)
Settings.file.visuals.transition_animation = new_value
func firebar_style_changed(new_value := 0) -> void:
Settings.file.visuals.firebar_style = new_value
func set_value(value_name := "", value = null) -> void:
{
"parallax_style": parallax_style_changed,
@@ -63,5 +66,6 @@ func set_value(value_name := "", value = null) -> void:
"resource_packs": resource_pack_loaded,
"bridge_animation": bridge_changed,
"transition_animation": transform_style_changed,
"colour_pipes": colourful_pipes_changed
"colour_pipes": colourful_pipes_changed,
"firebar_style": firebar_style_changed
}[value_name].call(value)