How to set it if i want to make a sprite spend 5s amplifying to the size of the two times.I am a beginner.
I use the "set scale to 2". It will become a moment of 2 times, I would like to see the process.
Thank you !
Develop games in your browser. Powerful, performant & highly capable.
I think I finally decoded what you mean.
You want to gradually increase the size of the sprite over 5s to a scale of 2.0?
You'd have to look up this function "lerp"
erp(a, b, x) Linear interpolation of a to b by x. Calculates a + x * (b - a).