Toggle 组件参考

    点击 属性检查器 下面的 添加组件 按钮,然后选择 UI/Toggle 即可添加 Toggle 组件到节点上。

    Toggle 的组件接口请参考 Toggle API

    事件结构参考:。

    Toggle 的事件回调有二个参数,第一个参数是 Toggle 本身,第二个参数是 customEventData。

    toggle-node-tree

    注意:checkMark 组件所在的节点需要放在 background 节点的上面。

    这种方法添加的事件回调和使用编辑器添加的事件回调是一样的,都是通过代码添加。首先需要构造一个 对象,然后设置好对应的 targetcomponenthandlercustomEventData 参数。

    方法二

    1. // 假设我们在一个组件的 onLoad 方法里面添加事件处理回调,在 callback 函数中进行事件处理
    2. import { _decorator, Component, ToggleComponent } from 'cc';
    3. const { ccclass, property } = _decorator;
    4. @ccclass("example")
    5. export class example extends Component {
    6. @property(ToggleComponent)
    7. this.toggle.node.on('toggle', this.callback, this);
    8. }
    9. callback(toggle: ToggleComponent){
    10. // 回调的参数是 toggle 组件,注意这种方式注册的事件,无法传递 customEventData
    11. }