Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects animate colors except one color in after effects

  • animate colors except one color in after effects

    Posted by Avaneesh Srivastava on November 5, 2015 at 5:28 pm

    hello everyone,
    in after effects i’m animating tint of an object using wiggle expression. But when its animation i’m getting all colors from 0 to 255 so i dont wan’t black color. how can i stop that ?

    thankyou

    Avaneesh Srivastava replied 10 years, 6 months ago 3 Members · 3 Replies
  • 3 Replies
  • Walter Soyka

    November 6, 2015 at 11:23 am

    Use the Extract effect before your randomized tint effect. You can use Extract to limit the brightness range that the tint will affect.

    Walter Soyka
    Designer & Mad Scientist at Keen Live [link]
    Motion Graphics, Widescreen Events, Presentation Design, and Consulting
    @keenlive   |   RenderBreak [blog]   |   Profile [LinkedIn]

  • Iwan Smith

    November 6, 2015 at 1:36 pm

    Hi Avaneesh,

    You can customize this script for your needs

    segMin = .5;
    segMax = .5;
    minVal = [0,0,0,1];
    maxVal = [1,1,1,1];

    end = 0;
    j = 0;
    while ( time >= end){
    j += 1;
    seedRandom(j,true);
    start = end;
    end += random(segMin,segMax);
    }
    endVal = random(minVal,maxVal);
    seedRandom(j-1,true);
    dummy=random();
    startVal = random(minVal,maxVal);
    ease(time,start,end,startVal,endVal);

    Let me know if you need more help at https://iwansfactory.com/

    https://iwansfactory.com
    Motion graphics portfolio

  • Avaneesh Srivastava

    November 6, 2015 at 2:49 pm

    thanks it really helped me…

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy