Simply touch screen to move actor
What is the simplest way to have your actor move towards a position touched on the screen? I don't want joystick controls, I want the user to be able to simply tap anywhere on the screen and have my actor move towards that position. Thanks.
Comments
Something like:
Rule: Actor receives event ... mouse button ... is down
Behaviour: Interpolate Attribute ... self.Position.X ... To ... game.Mouse.Position.X
. . . and the same for the Y attribute