Increase Actor Speed Gradually
I am trying to increase the speed of my actor after every 5 seconds.
This actor will be moving on the X axis.
However, I am having trouble creating the formula properly.
Attribute = ActorSpeed = 100
Every 5 seconds Actors speed will increase by +20.
How would I create that? I understand how attributes work, I think I am typing it in wrong.
Time
Every 5(ActorSpeed+20)
This actor will be moving on the X axis.
However, I am having trouble creating the formula properly.
Attribute = ActorSpeed = 100
Every 5 seconds Actors speed will increase by +20.
How would I create that? I understand how attributes work, I think I am typing it in wrong.
Time
Every 5(ActorSpeed+20)
Comments
Every 5 seconds
Change Attribute
set self.motion.linearvelocity.x to self.motion.linearvelocity.x+20
Change Attribute ActorSpeed to ActorSpeed+20
Should do it...
Either that or I'm soooo developing the wrong apps.