Skip to content

Commit

Permalink
remove "no" from settings*, track aliasing setting
Browse files Browse the repository at this point in the history
*optional additions have kept their "no" settings as to differentiate them from in game settings
  • Loading branch information
LlysiX committed Sep 7, 2024
1 parent 686bb97 commit 5c8d5c0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions _ark/ps4/dx/overshell/dx_states.dta
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,9 @@
(
{if_else $blackbg "Black Venue: ON" "Black Venue: OFF"}
{if_else $60fpsbg "60 FPS Venues: ON" "60 FPS Venues: OFF"}
{if_else $crowdmeter "No Crowd Meter: ON" "No Crowd Meter: OFF"}
{if_else $noui "No HUD: ON" "No HUD: OFF"}
{if_else $crowdmeter "Crowd Meter: OFF" "Crowd Meter: ON"}
{if_else $noui "HUD: OFF" "HUD: ON"}
{if_else $noaa "Track Antialiasing: OFF" "Track Antialiasing: ON"}
"Track Curvature"
)
}
Expand All @@ -350,6 +351,7 @@
(enter
{set $crowdmeter {file_exists "data:/GoldHEN/RB4DX/ps4/ui/game/crowd_meter.entity_ps4"}}
{set $noui {file_exists "data:/GoldHEN/RB4DX/ps4/ui/game/hud.scene_ps4"}}
{set $noaa {file_exists "data:/GoldHEN/RB4DX/ps4/shared/scene/antialias.scene_ps4"}}
{set $dx_cur_state vis}
RB4DXVIS_DATA
)
Expand All @@ -376,7 +378,7 @@
{$this show_state kState_RB4DXDelayedEffectWarn}
{$this trigger_select_effects }
)
(("No Crowd Meter: ON" "No Crowd Meter: OFF")
(("Crowd Meter: ON" "Crowd Meter: OFF")
{set $crowdmeter {! $crowdmeter}}
{if_else $crowdmeter
{do
Expand All @@ -394,7 +396,7 @@
}
{$this trigger_select_effects }
)
(("No HUD: ON" "No HUD: OFF")
(("HUD: ON" "HUD: OFF")
{set $noui {! $noui}}
{if_else $noui
{write_file "data:/GoldHEN/RB4DX/ps4/ui/game/hud.scene_ps4" $dx_write_nul}
Expand All @@ -406,6 +408,18 @@
}
{$this trigger_select_effects }
)
(("Track Antialiasing: OFF" "Track Antialiasing: ON")
{set $noaa {! $noaa}}
{if_else $noaa
{write_file "data:/GoldHEN/RB4DX/ps4/shared/scene/antialias.scene_ps4" $dx_write_nul}
{file_delete "data:/GoldHEN/RB4DX/ps4/shared/scene/antialias.scene_ps4"}
}
{if_else {$this in_song}
{$this show_state kState_RB4DXInGameWarn}
RB4DXVIS_DATA
}
{$this trigger_select_effects }
)
("Track Curvature"
{$this show_state kState_RB4DXTrackCurve}
{$this trigger_select_effects }
Expand Down
Empty file.

0 comments on commit 5c8d5c0

Please sign in to comment.