欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CocosCreator3D Typescript事件系统

程序员文章站 2022-06-11 11:38:15
...

按钮事件:

    // 声明
    @property(ButtonComponent)
    Btn: ButtonComponent | null = null;

    onLoad() {
        // 添加事件
        this.BtnRigth.node.on('click', this.CallbackBtn, this);// 视景
    }

    // 按钮具体功能
    CallbackBtn(button: ButtonComponent) {
        
    }

全局事件:

    onLoad() {
        cc.systemEvent.on(cc.SystemEvent.EventType.鼠标事件, this.自定义方法名, this);
    }