Skip to content

Commit

Permalink
60 fps venues
Browse files Browse the repository at this point in the history
  • Loading branch information
LlysiX committed May 9, 2024
1 parent 73d6952 commit d76fdc9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions _ark/ps4/config/include/rnd.dta
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(title "Rock Band")
(max_partial_framerate_scenes {if_else {file_exists "60fpsbg.dta"} 0 1})
(multi_threaded_rendering_enabled FALSE)
(use_lod FALSE)
(use_gbuffer_vertex_normals FALSE)
(max_shadow_contrib_buffers 2)
(xb1
(resolutions 1920x1080))
(ps4
(resolutions 1920x1080))
12 changes: 12 additions & 0 deletions _ark/ps4/dx/overshell/dx_states.dta
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
{$this setup_confirm_actions a
(
{if_else $blackbg "Black Venue: ON" "Black Venue: OFF"}
{if_else $60fpsbg "60 FPS Venues: ON" "60 FPS Venues: OFF"}
{if_else $nomiss "No Miss Sounds: ON" "No Miss Sounds: OFF"}
{if_else $crowdmeter "No Crowd Meter: ON" "No Crowd Meter: OFF"}
{if_else $noui "No HUD: ON" "No HUD: OFF"}
Expand Down Expand Up @@ -127,6 +128,17 @@
{$this show_state kState_RB4DXDelayedEffectWarn}
{$this trigger_select_effects }
)
(("60 FPS Venues: ON" "60 FPS Venues: OFF")
{set $60fpsbg {! $60fpsbg}}
{if_else $60fpsbg
{do
{write_file "data:/GoldHEN/RB4DX/60fpsbg.dta" $dx_write_nul}
}
{file_delete "data:/GoldHEN/RB4DX/60fpsbg.dta"}
}
{$this show_state kState_RB4DXDelayedEffectWarn}
{$this trigger_select_effects }
)
(("No Miss Sounds: ON" "No Miss Sounds: OFF")
{set $nomiss {! $nomiss}}
{if_else $nomiss
Expand Down
1 change: 1 addition & 0 deletions _ark/ps4/dx/ui/dx_init.dta
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
{set $nood {file_exists "nood.dta"}}
{set $practiceod {file_exists "practiceod.dta"}}
{set $blackbg {file_exists "blackbg.dta"}}
{set $60fpsbg {file_exists "60fpsbg.dta"}}
{set $nomiss {file_exists "nomiss.dta"}}
{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"}}
Expand Down

0 comments on commit d76fdc9

Please sign in to comment.