How to make object gradually increase speed

How can I make an object increase it’s speed/force as time goes on?

1 Like

Start a timer, and use it as multiplier for the speed/force.

How do I achieve this

when you’re setting the force value/amount use this expression:

yourObject.Variable(iniSpeed) * yourObject.ObjectTimerElapsedTime(“yourTimer”)

***Assign a value to iniSpeed variable. ***
And don’t forget to start yourTimer with a condition.

1 Like