ID:1956156
 
(See the best response by Ter13.)
Good afternoon,

I'm looking to make mobile (ios/Android) controls for a game. The player will frequently use the joystick for moving and another joystick for shooting.

I am looking at the best way to implement this. I haven't tested it but I am certain that we can not have two MouseMoving procs at once.
Best response
You'll have to write the joystick controls in HTML5 and rely on the webclient.

You'll want to look up the touch event specification outlined in HTML5:

http://www.html5rocks.com/en/mobile/touch/
In response to Ter13
Ter13 wrote:
You'll have to write the joystick controls in HTML5 and rely on the webclient.

You'll want to look up the touch event specification outlined in HTML5:

http://www.html5rocks.com/en/mobile/touch/

Ah great, definitely what I'm looking for. As always Ter, thank you!