Icaruk 14 Posted May 8, 2014 Someone knows how to make this blurry vision effect via script? Thanks. Share this post Link to post Share on other sites
brians200 51 Posted May 8, 2014 (edited) This thread talks about one instance of the blurred vision during the campaign. http://forums.bistudio.com/showthread.php?172864-Any-idea-how-this-was-done&p=2618743 If you remove this line, titleCut ["", "WHITE IN", 5]; You won't have the bright white flash Edited May 8, 2014 by brians200 Share this post Link to post Share on other sites
Icaruk 14 Posted May 8, 2014 (edited) 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 May 9, 2014 by Icaruk 1 Share this post Link to post Share on other sites