Jump to content
Sign in to follow this  
Painless

static and interference in Intro's

Recommended Posts

Hi

How do i go about enabling static or interference effect for intros, like the (OA & PMC ) show case movies , ive messed about with ppeffects and filmgrain modules but to no avail.

cheers

Share this post


Link to post
Share on other sites

Filmgrain should get you what you want. For a more extreme 'interference' effect, ChromAbberation works well too. Try these for example:

"filmGrain" ppEffectEnable true;

"FilmGrain" ppEffectAdjust[0.28, 1.64, 2.22, 0.35, 0, true];

"filmGrain" ppEffectCommit 1;

"ChromAberration" ppEffectEnable true;

"ChromAberration" ppEffectAdjust[0.15, 0, true];

Share this post


Link to post
Share on other sites
Filmgrain should get you what you want. For a more extreme 'interference' effect, ChromAbberation works well too. Try these for example:

"filmGrain" ppEffectEnable true;

"FilmGrain" ppEffectAdjust[0.28, 1.64, 2.22, 0.35, 0, true];

"filmGrain" ppEffectCommit 1;

"ChromAberration" ppEffectEnable true;

"ChromAberration" ppEffectAdjust[0.15, 0, true];

@ 2nd Ranger

Thanks mate thats spot on! ive managed to get the static working,is there away to get the screen to flicker or move up and down? .

thanks in advance

Share this post


Link to post
Share on other sites

Try this

"filmGrain" ppEffectEnable true;
"FilmGrain" ppEffectAdjust[0.28, 1.64, 2.22, 0.35, 0, true];
"filmGrain" ppEffectCommit 1;
"ChromAberration" ppEffectEnable true;

[] spawn 
{
   while {true} do 
    {
    "ChromAberration" ppEffectAdjust[0.0, 0.2), true]; 
    "ChromAberration" ppEffectCommit 0.05;

 sleep 0.1;

     "ChromAberration" ppEffectAdjust[0.0, 0.0, true]; 
      "ChromAberration" ppEffectCommit 0.01;

   sleep (random 3);
   };
};

Experiment with the second ChromAb value to make screen flicker up and down, the first value for left-right. You could even use a random value for the flicker like

"ChromAberration" ppEffectAdjust[0.0, (random 0.4), true];

And maybe a random sleep after the first flicker, so it might flick instantly or take a second or two.

Edited by 2nd Ranger

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  

×