关于toggle 遇到的问题,希望大佬帮忙看看

creator 3.6.2



toggle 默认未选中 ,在toggle 的click事件中我手动设置了一下isChecked=true 结果toggle 就没办法选中了

this.node.on(Toggle.EventType.CLICK, this._internalToggle, this);
protected _internalToggle () {
    this.isChecked = !this.isChecked;
}

引擎里有做点击监听,点击结束就又取反了。

奥,感谢,我也看到了,就是觉得toggle 这个click事情响应的时机比较尴尬