cocos lua 3.0 触摸事件

前端之家收集整理的这篇文章主要介绍了cocos lua 3.0 触摸事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文转自:http://blog.csdn.net/liyoushihaer/article/details/39501665

   local function onTouchEnded(touch,event)
        local poin = touch:getLocation()
        print(" X:")
     end 
    
   local function onTouchBegan(touch,event)
    local tt =touch:getLocation()
    print("x",tt.x,"y:",tt.y)
    return true  -- 必须返回true 后边的move end等才会被处理
   end
   
    local function onTouchMoved(touch,event)
      local poin = touch:getLocation()
        print(" y:")
    end
      
   local listener = cc.EventListenerTouchOneByOne:create() -- 单点触摸监听 
    -- cc.EventListenerTouchAllAtOnce:create()  -- 多点触摸
   listener:registerScriptHandler(onTouchBegan,cc.Handler.EVENT_TOUCH_BEGAN) 前一个参数是回调函数后一个参数是对应事件
   listener:registerScriptHandler(onTouchMoved,cc.Handler.EVENT_TOUCH_MOVED )
   listener:registerScriptHandler(onTouchEnded,cc.Handler.EVENT_TOUCH_ENDED)
   local dispacher = layerBg:getEventDispatcher()  
   dispacher:addEventListenerWithSceneGraPHPriority(listener,layerBg)  -- 参数 监听器   对象
原文链接:https://www.f2er.com/cocos2dx/346659.html

猜你在找的Cocos2d-x相关文章