Creator 中默认吞噬所有点击事件,只要你的上层节点注册了点击事件,下面的节点无法接收点击。
通过以下方法可实现触控事件的传递:
if (this.node._touchListener) {
this.node._touchListener.setSwallowTouches(this._isSwallow);
}
Creator 中默认吞噬所有点击事件,只要你的上层节点注册了点击事件,下面的节点无法接收点击。
通过以下方法可实现触控事件的传递:
if (this.node._touchListener) {
this.node._touchListener.setSwallowTouches(this._isSwallow);
}