Full support for Multi-touch events on Android. Yay!

Heyas…

I just committed an update that adds multi-touch support for the entire library.

Just add this line when creating the screen:

[java]
screen.setUseMultiTouch(true);
[/java]

NOTE:
Enabling this feature disables mouse and keyboard emulation on android. You have to plan for supporting both mouse/keyboard events and onTouch events if your game is multi-platform. Keep in mind, touch events can easily be wrapped and forwarded to mouse handlers, so it is not a huge undertaking to allow this support in your app.

OTHER NOTE:
I’ll be adding gesture support for certain controls soon. This will allow for expected functionality with controls like scroll areas, etc.

5 Likes

Hi

i am artist getting into develop meaningful interactive app for kids. I need to use this multi touch. I need to how do i implement it. Can you share some example app.