Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. closeDialog 0;
  2.  
  3. //hint "Iglou Iglou Iglou!!!!!";
  4. sleep 0.5;
  5.  
  6. "chromAberration" ppEffectEnable true; // Liste des effets activés
  7. "radialBlur" ppEffectEnable true;
  8. enableCamShake true;
  9.  
  10. for "_i" from 0 to 60 do // 45 secondes d'effets
  11. {
  12. "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true];
  13. "chromAberration" ppEffectCommit 1;
  14. "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15];
  15. "radialBlur" ppEffectCommit 1;
  16. addcamShake[random 3, 1, random 3];
  17. sleep 1;
  18. };
  19.  
  20. "chromAberration" ppEffectAdjust [0,0,true]; // Fin des effets
  21. "chromAberration" ppEffectCommit 5;
  22. "radialBlur" ppEffectAdjust [0,0,0,0];
  23. "radialBlur" ppEffectCommit 5;
  24. sleep 6;
  25.  
  26. "chromAberration" ppEffectEnable false;
  27. "radialBlur" ppEffectEnable false;
  28. resetCamShake;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement