I'm creating a cliker game and I'm having problems with touch.
https://uploaddeimagens.com.br/imagens/ ... -jpg--1983 <<<< this is my event
The problem is that in the mobile the particle creates in only one of the touch if it has pressing both at the same time.
How do I make the particle create in both simultaneous taps?
Develop games in your browser. Powerful, performant & highly capable.
sorry for my English, In case you do not understand, notify me.
Use Touch.xAt(1), Touch.yAt(1) for the second touch.
Unfortunately, you'll need to duplicate the event:
On 0 touch start -> create particles at Touch.xAt(0), Touch.yAt(0) On 1 touch start -> create particles at Touch.xAt(1), Touch.yAt(1) [/code:ca6wszvf]