Corona SDK相对于玩家轮换射击

时间:2015-04-28 01:07:57

标签: lua corona

所以我想相对于自行车的旋转直射炮弹。 这是我的代码:

function shootButton:touch(event)
    if event.phase == "began" then
        if G_fired == false then 
            local firePosX= bFrame.x +170
            local firePosY = bFrame.y -20

            bullet.y = firePosY
            bullet.x = firePosX   
            bullet:applyForce( 23000, 10, bullet.x, bullet.y ) -- 44000
            bullet.isVisible = true
            bullet.isBullet = true

            return true
        end
    end
end

0 个答案:

没有答案