1
0
mirror of https://github.com/XLabsProject/iw4x-rawfiles.git synced 2023-08-02 15:02:11 +02:00

Merge pull request #3 from zweeej/slowmo-fix

re-enabling killcam slowmotion in _killcam.gsc
This commit is contained in:
Dss0 2021-08-15 20:41:16 +02:00 committed by GitHub
commit 23b7a4350f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,9 +232,9 @@ doFinalKillCamFX( camTime )
wait( camTime - 1.0 ); wait( camTime - 1.0 );
} }
//setSlowMotion( 1.0, 0.25, intoSlowMoTime ); // start timescale, end timescale, lerp duration setSlowMotion( 1.0, 0.25, intoSlowMoTime ); // start timescale, end timescale, lerp duration
wait( intoSlowMoTime + .5 ); wait( intoSlowMoTime + .5 );
//setSlowMotion( 0.25, 1, 1.0 ); setSlowMotion( 0.25, 1, 1.0 );
level.doingFinalKillcamFx = undefined; level.doingFinalKillcamFx = undefined;
} }