Tap to move (with gravity)?
How can i make it so if the player taps to the left of my actor they move left and same for if they tap to the right? Also, I want gravity to still be active (accelerate down behavior), i would be able to do this easily except move and interpolate seem to override gravity... any suggestions?
Comments
for example:
When key right is down, change attribute self motion linear velocity x to 250
then in the otherwise section have a change attribute behavior and change self motion linear velocity x to 0
when key left is down, change attribute self motion linear velocity x to -250
then in the otherwise section have a change attribute behavior and change self motion linear velocity x to 0
cheers