typescript 向Cocos Creator上的sprite添加单击事件侦听器

mcdcgff0  于 2022-12-24  发布在  TypeScript
关注(0)|答案(1)|浏览(323)

我试图调用一个函数点击精灵(精灵只是一个图片)。文档示例不工作
这是我的代码,除click事件外,其他一切都正常工作

import { _decorator, Component, Node } from 'cc';
const { ccclass, property } = _decorator;

@ccclass('NewComponent')
export class NewComponent extends Component {

    start() {
        let anim = this.getComponent(cc.Animation);
        anim.play("anim_pers");
        console.log('start');

        node.on(cc.Node.EventType.MOUSE_DOWN, function (event) {
            console.log('Mouse down');
        }, this);
    }
    update(deltaTime: number) {}
}
3pvhb19x

3pvhb19x1#

必须将脚本节点设置为单击节点

相关问题