-
Hovering Scale Animation
Hi! I am working on a video that micmics something like selecting an object with a mouse cursor. It should go like when you hover the arrow on top of the object it should scale up a bit. I did that using this expression:
point = thisComp.layer("Motion Controller").transform.position; //controlls the cursor
housePoint = thisLayer.sampleImage(point, [.5,.5])[3]; //produces a value of "1" when the null is over this layer or "0" when not.houseScale = ease(housePoint, 0,1,60,70);
[houseScale,houseScale]But this just jumps the value of the scale from 60% to 70%. What I want is have like an ease or animation when scaling up. I would really appreciate your help. Thank you so much!