Creator 3.4版本ScrollView 监听滑动事件未生效

_onScrollBegan(){

    log('开始滑动')

}

_onScrollEnded(){

    log('结束滑动')

}

_onScrolling(){

    log('正在滑动')

}

start () {

    // [3]

    this.node.on('scroll-began', this._onScrollBegan, this, true);

    this.node.on('scroll-ended', this._onScrollEnded, this, true);

    this.node.on('scrolling', this._onScrolling, this, true);

}

上述代码的脚本是挂在scrollview的节点上,运行,未触发任何效果,日志没有打印出


true去掉

去掉之后OK了,感谢