Move Attribute with Gravity?
My actor moves left and right with the Move attribute, I want to avoid using Accelerate if posible. My issue is that when the actor, say is coming off of a ramp, it keeps going along the same path and doesn't descend until I press Up on the mouse.
I have gravity on, I've tried adding an accelerate down on the actor..all kinds of things.
How can you get the actor to go back down while he's still in the air or does Move overpower that?
I have gravity on, I've tried adding an accelerate down on the actor..all kinds of things.
How can you get the actor to go back down while he's still in the air or does Move overpower that?
Comments
Ace
So a change attribute?
I'm using: When left is pressed, move left and When right is pressed move right...
change attribute self motion linear velocity x to -100 (or any negative value you want)
Otherwise: change attribute self motion linear x to 0
Rule when right is pressed:
change attribute self motion linear velocity x to 100 (or any positive value you want)
Otherwise: change attribute self motion linear x to 0