I've made this Button class, to catch the Pointer event :
public class Button implements Pointer.Listener {
public void initLayer(Image defaultImage) {
layer = parent.createImageLayer(this.defaultImage);
layer.addListener(this);
}
...
If I touch one of the instanciated buttons, I get the onPointerStart & onPointerEnd events. But, if one of my button is already touched and I start to touch another, I don't get the onPointerStart event of the second button.
Is there a way to get these multi touch events with playn ?