加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

cocos2dx 物理世界

发布时间:2020-12-14 21:20:08 所属栏目:百科 来源:网络整理
导读:local MainScene = class("MainScene",function() return display.newPhysicsScene()end)function MainScene:onTouch(eventType,x,y) print("the name is---"..eventType.."--x--"..x.."--y--"..y) if eventType=="began" then self:createCoin(x,y) endendf
local MainScene = class("MainScene",function()
    return display.newPhysicsScene()
end)

function MainScene:onTouch(eventType,x,y)
    print("the name is---"..eventType.."--x--"..x.."--y--"..y)
    if eventType=="began" then
        self:createCoin(x,y)
    end
end


function MainScene:ctor()
    self.layer=display.newLayer():addTo(self)
    self.layer:addNodeEventListener(cc.NODE_TOUCH_EVENT,function(event)
        return self:onTouch(event.name,event.x,event.y)
    end)

    self.world=self:getPhysicsWorld()
    self.world:setGravity(cc.p(0,-200))
    --

    local box=display.newNode()
    box:setAnchorPoint(cc.p(0.5,0.5))
    box:setPhysicsBody(cc.PhysicsBody:createEdgeBox(cc.size(800,600)))
    box:setPosition(cc.p(480,320))
    self:addChild(box,10)


    self:getPhysicsWorld():setDebugDrawMask(true and cc.PhysicsWorld.DEBUGDRAW_ALL or cc.PhysicsWorld.DEBUGDRAW_NONE)

end
function MainScene:createCoin(x,y)
    -- add sprite to scene
    local coinSprite = display.newSprite("button.png")
    self:addChild(coinSprite)
    local coinBody = cc.PhysicsBody:createBox(coinSprite:getBoundingBox(),cc.PhysicsMaterial(46,0.8,0.8))
    coinBody:setMass(100)
    coinSprite:setPhysicsBody(coinBody)
    coinSprite:setPosition(x,y)
end


function MainScene:onEnter()
    
end
function MainScene:onEnterFrame(dt)
    -- body
end
function MainScene:onExit()
end

return MainScene

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读