Im using the 8 dir example project and Ive added touch controls. A thumbstick is used to move the player and a button used to fire the bullet. The problem Im having is with multi-touch. My player stops moving if the shoot button is touched while the thumb is being touched. Example project attached if anyone could help.
dropbox.com/s/vfubjswiiz1pzu3/TwoTouches.c3p
Its because you reset the sticks position on any touch end and not when the touch ends which controls the stick. Change it like this:
Develop games in your browser. Powerful, performant & highly capable.
That worked Great. Thanks!