Cocos creator 的事件处理(鼠标事件、键盘事件、触摸事件、自定义事件、控制精灵移动Demo)

发布时间:2024年01月19日

鼠标事件

        //鼠标事件
        this.node.on(cc.Node.EventType.MOUSE_DOWN, (e: cc.Event.EventMouse) => {
            cc.log(e.getLocation() + "")
            if (e.getButton() == cc.Event.EventMouse.BUTTON_LEFT) {
                cc.log("鼠标左键")
            }
        })

键盘事件


//键盘事件
       cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, (e: cc.Event.EventKeyboard) => {
            cc.log(e.keyCode + "")
            if (e.keyCode == cc.macro.KEY.a) {
                cc.log("点击a")
            }
        })

触摸事件

        //触摸事件
        this.node.on(cc.Node.EventType.TOUCH_START, (e: cc.Event.EventTouch) => {
            cc.log("触摸" + e.getLocation())
        })

自定义事件(消息通知)

  • 发送通知(2种方式)
this.node.on(cc.Node.EventType.MOUSE_DOWN, () => {
            cc.log("点击按钮,发送事件1")
            cc.find("human").emit("msg")
        })
this.node.on(cc.Node.EventType.MOUSE_DOWN, () => {
                cc.log("点击按钮,发送事件2")
                let event = new cc.Event.EventCustom("msg", true)
                event.detail = {date: new Date(), text: "hello"}
                cc.find("human").dispatchEvent(event)
            }
        )
  • 接收方
        //自定义事件,例如通知
        this.node.on("msg", (e:cc.Event.EventCustom) => {
            cc.log("自定义事件触发")
            cc.log(e.detail.text)
        })

Demo,控制精灵移动


    isFocus: boolean = false

    speed: number = 50

    start() {
        
        //鼠标(MOUSE_DOWN)、或手指拖拽人物移动
        this.node.on(cc.Node.EventType.TOUCH_START, () => {
            this.isFocus = true
        })
        this.node.on(cc.Node.EventType.TOUCH_END, () => {
            this.isFocus = false
        })
        this.node.on(cc.Node.EventType.TOUCH_MOVE, (e: cc.Event.EventMouse) => {
            if (this.isFocus) {
                this.node.setPosition(e.getLocation())
            }
        })

        //键盘控制人物移动
        cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, (e: cc.Event.EventKeyboard) => {
            if (e.keyCode == cc.macro.KEY.up){
                this.node.y += this.speed;
            }else if (e.keyCode == cc.macro.KEY.down){
                this.node.y -= this.speed;
            }else if (e.keyCode == cc.macro.KEY.left){
                this.node.x -= this.speed;
            }else if (e.keyCode == cc.macro.KEY.right){
                this.node.x += this.speed;
            }
        })
    }

文章来源:https://blog.csdn.net/yu540135101/article/details/135696406
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。