Hey firemaple little bit of help
Billyd1
Member Posts: 133
I see you demo here: http://gamesalad.com/game/play/45866
How would I make that move by my finger touch?
Thanks
How would I make that move by my finger touch?
Thanks
Comments
However, if you wanted the car to follow your finger, you could use the Move To Behavior. The X and Y would be game.Touch1.X and game.Touch1.Y
For the rotation, use Rotate To Angle.
And to get that angle, use VectorToAngle(game.Touch1.X-self.Position.X,game.Touch1.Y-self.Position.Y)
That's just off the top of my head though, and I haven't tested it, but something like that should work.