Skip to content

Commit

Permalink
no flames optional addition
Browse files Browse the repository at this point in the history
  • Loading branch information
LlysiX committed Feb 1, 2024
1 parent 229c2a6 commit b995d59
Show file tree
Hide file tree
Showing 19 changed files with 36 additions and 1 deletion.
16 changes: 15 additions & 1 deletion _ark/ps4/dx/overshell/dx_states.dta
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,15 @@
{$this trigger_cancel_effects })
)
(kState_RB4DXOptionalAdditions
(view list_short)
(view list_medium)
(enter
OPTIONAL_ADDITIONS_CHECK
{$this setup_confirm_actions a
(
{if_else $nohud "Performance Mode: ON" "Performance Mode: OFF"}
{if_else $songtitle "Song Title Always: ON" "Song Title Always: OFF"}
{if_else $noshine "No Shine: ON" "No Shine: OFF"}
{if_else $noflames "No Flames: ON" "No Flames: OFF"}
)
}
)
Expand Down Expand Up @@ -222,6 +223,16 @@
}
{$this trigger_select_effects}
)
(("No Flames: ON" "No Flames: OFF")
{if_else $noflames
{do
{set $optionaladd noflames}
{$this show_state kState_RB4DXOptionalAddWarn}
}
{$this show_state kState_RB4DXOptionalAddHowTo}
}
{$this trigger_select_effects}
)
}
)
(on_cancel
Expand Down Expand Up @@ -250,6 +261,9 @@
(noshine
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/fx_noise_b_util.bmp_ps4"}
)
(noflames
DELETE_NOFLAMES_FILES
)
}
{$this show_state kState_RB4DXOptionalAdditions}
)
Expand Down
21 changes: 21 additions & 0 deletions _ark/ps4/dx/ui/dx_init.dta
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,25 @@
{set $nohud {file_exists "data:/GoldHEN/RB4DX/ps4/ui/game/game.layout_ps4"}}
{set $songtitle {file_exists "data:/GoldHEN/RB4DX/ps4/ui/game/song_artist_overlay.entity_ps4"}}
{set $noshine {file_exists "data:/GoldHEN/RB4DX/ps4/track/shared/fx_noise_b_util.bmp_ps4"}}
{set $noflames {file_exists "data:/GoldHEN/RB4DX/ps4/track/smasher/gem_smasher_unlit.entity_ps4"}}
)
#define DELETE_NOFLAMES_FILES
(
{file_delete "data:/GoldHEN/RB4DX/ps4/track/smasher/gem_smasher_unlit.entity_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/smasher/fx_smasher_streaks.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/smasher/gem_smashed_util.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/smasher_beams.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/smasher_flash.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/smasher_shockwave.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/spark01_color.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_orb.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_orb_dense.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_shockwave.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_shockwave_forced_persp"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_smoke_plume.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_spark.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_spark_cluster.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_spark_dense.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/particles/textures/particle_spiral_flare.bmp_ps4"}
{file_delete "data:/GoldHEN/RB4DX/ps4/track/shared/fx/flash_pot/particle_smoke.bmp_ps4"}
)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit b995d59

Please sign in to comment.