这是我的对象,我想给出向上的速度
local myImage = display.newImage( "rose.png" )
myImage.x = 320
myImage.y = 500
myImage.rotation = 0
physics.addBody( myImage, { density=0.1, friction=2.0, bounce=0.0,velocity=-40 } )
提供向上速度的功能
local function test()
myImage:setLinearVelocity(0, -20)
end
test()
物体没有向上移动,这是我的物理学:
adding Physics
local physics =require("physics")
physics.setGravity(0,0.9)
physics.start()