Skip to main content
Participant
May 3, 2014
Question

How to use 10 touch points at the same time ?

  • May 3, 2014
  • 1 reply
  • 352 views

I want to project game which use about 10 touch points? How can I use all of them at the same time ?

Please give me a sample code.

This topic has been closed for replies.

1 reply

User Unknow
Legend
May 3, 2014

Firstly you must know how many touch points can accept your device. For example iPad and iPhone can't handle more than 5.

1. Enable touch input mode by

Multitouch.inputMode=MultitouchInputMode.TOUCH_POINT;

2. Use same method as for mouse input but instead use TouchEvent API

jadams602
Inspiring
May 3, 2014

For example iPad and iPhone can't handle more than 5.

Not entirely correct. iPhone is limited to 5 touches but iPad supports up to 11 simultaneous touches.