#How can I make a progressive acceleration animation?

1 messages · Page 1 of 1 (latest)

feral wraith
#

How can an animation be made to speed up as time goes by? For example, the propeller of a helicopter when the engine is being turned on, the blades begin to spin slowly and progressively increase in speed, for example an animation that lasts 10 seconds until it reaches its maximum speed, is this possible?

frank rampart
#

So, looking at the docs, there's a field named anim_time_update you can add to the animation. By default it's set to query.anim_time + query.delta_time, so you can probably play around with adding another term to it, something like math.min(q.anim_time,10)