Here the code:
>//this is a touchable pad
>var pad = ui.addXYPad(10, 210, ui.screenWidth - 20, 400, function(e) {
> for (var i = 0; i < e.length; i++) {
> console.log(e[i].id + " " + e[i].x + " " + e[i].y);
> }
>});
So I can read from (e) thir values of all finger positions in real time.
Cool ^^!
I can imagine that UI buttons don't support multiple touch events isn't it?
Cheers