触摸事件屏蔽疑问

       this.node.on(cc.Node.EventType.TOUCH_START, this.touchStart, this);
        this.node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMove, this);
        this.node.on(cc.Node.EventType.TOUCH_END, this.touchEnd, this);

还有没有以前2d-x 那种模式,touchbegan 返回false,就不触发剩余的函数