How to use interpolate
Hi i want to create an illusion of my actor running towards the screen so i decided to use interpolate : self>size>width and i did the same for height and i set it to five unfortunately it is shrinking instead of growing which is not a bad thing it is just not what i want it to do. So how would you use interpolate to make the actor grow?
Best Answers
-
Chobbiface Posts: 491
What is your actor's current width? And what are you interpolating it to..five? It shouldn't shrink if you have it greater than. -
DeadlySeriousMedia ArizonaPosts: 838
If your actor is, say, 1x1; you need to add interpolate width set it to 5 choose the time, then do the same for height. The goal size must be larger than the current size, or else it shrinks be cause the dimensions are getting smaller. If it's larger than 5 on the height or width, then it would shrink down to 5 when you interpolate.
Answers