-
percentage of scale
Hi ! 🙂
I’m using an expression Dan had found for me, which works perfectly, to make the same animation at different times on many layers.
I have an animation on Scale, the same for each layer :
delay = 3; //number of frames to delay
idx = Math.floor((index-1)/2);
d = delay*thisComp.frameDuration*(idx);
thisComp.layer(1).scale.valueAtTime(time – d)But now, let’s complicate it a bit ! 🙂
I need some of the layers (it’s only circles) to follow this animation (time is OK), but being a little smaller : those circles should be about 65% of the size of the other ones (and of the 1st layer).I read some post about percentage on the forum, but I’m really not able to adapt it to this expression ! 🙂
Thank you a lot for your help !