start ()
{
this.node.on(cc.Node.EventType.TOUCH_START, (event :cc.Event.EventTouch) =>
{
console.log("event._touches:"+event._touches.length);
for(let i in event._touches)
{
console.log("mulit touchs:"+JSON.stringify(event._touches[i]))
}
}, this);
}
在Android上,两手指显示1个点,如何实现多点触摸?