参考:
Touch_End的触发条件
本来想做个虚拟摇杆,在摇杆UI上按下时摇杆运作,在任意舞台位置松开时摇杆停止。
但是无法检测到舞台松开的touch_end事件。
以下代码
//在摇杆上按下
this.vj.on(cc.Node.EventType.TOUCH_START, this.onTouchStart, this);
//在舞台上移动
this.canvs.on(cc.Node.EventType.TOUCH_MOVE, this.onTouchMove, this);
//在舞台上松开
this.c