-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,413 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#define INIT_DTA_READER | ||
( | ||
{set $dxsettings {read_file #ifdef HX_XBOX "GAME:/config.dta" #endif #ifdef HX_PS3 "GD:/dev_hdd0/game/BLUS30050/USRDIR/config.dta" #endif}} | ||
{foreach $entry $dxsettings | ||
{if {== {elem $entry 0} {basename venue_fps}} | ||
{set $emulatefps | ||
{elem {find $entry venue_fps} 1} | ||
} | ||
} | ||
} | ||
) | ||
|
||
#define DX_FPS_SETUP | ||
( | ||
{if {!= $emulatefps 24} {{$world iterate PostProc $p {$p set emulate_fps $emulatefps}}} | ||
{if {>= {$emulatefps 25} {$char iterate CharHair $hair {$hair reset 35}} | ||
{$world iterate WorldDir $wd {$wd iterate BandCamShot $bcs | ||
{foreach $property (shake_noisefreq shake_noiseamp) {$bcs set (keyframes $i $property) {'*' {$bcs get (keyframes $i $property)} 0.25}}} | ||
{foreach $component (x y) {$bcs set (keyframes $i shake_maxangle $component) {'*' {$bcs get (keyframes $i shake_maxangle $component)} 0.25}}}}}}}} | ||
) |
Oops, something went wrong.