Hi!
I have an object which has to have left/right movements. I cannot use 8-direction behavior because I won't use keyboard.
So I tried CustomMovement. The thing here is that I don't want to work with acceleration. The object physics inertia is killing me. I just want to set the object's constant speed.
Here's where I am:
Events sheet:
- System (On tart of layout): Object -> Set CustomMovement Overall speed to 1
- System (Every tick): Object -> Accelerate CustomMovement 100 toward (Object.X + touch.Beta, Object.Y)
Whenever acceleration goes left or right or even mouse movement (if it is before or after the object) I want the object to move left or right in constant speed.
Any ideas?
Thanks!