Jump to content
Sign in to follow this  
Icaruk

Blurry vision like in campaign.

Recommended Posts

Someone knows how to make this blurry vision effect via script?

Thanks.

Share this post


Link to post
Share on other sites

Thanks, it worked!

I'll leave here a more durable blurry, with this one it's like you start waking up after a explosion or something.

[] spawn {

	addCamShake [20, 20, 0.2];    
	setCamShakeParams [0, 5, 1, 2, true];

              private ["_blur"];
               _blur = ppEffectCreate ["DynamicBlur", 474];
               _blur ppEffectEnable true;
               _blur ppEffectAdjust [0];
               _blur ppEffectCommit 0;

               waitUntil {ppEffectCommitted _blur};

               _blur ppEffectAdjust [20];
               _blur ppEffectCommit 0;


               _blur ppEffectAdjust [0];
               _blur ppEffectCommit 10;

               waitUntil {ppEffectCommitted _blur};

               _blur ppEffectEnable false;
               ppEffectDestroy _blur;
           };  

Edited by Icaruk
  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×