I have an object on screen like so
local crate1 = display.newImage("crate.png")
-- crate1.x = math.random(0, 310)
crate1.x = 30
crate1.y = 45
-- crate1.rotation = math.random(0, 360)
physics.addBody(crate1, {density = 2.0, friction = 1.5, bounce=0.01})
crate1.myName = "crate"
It falls downwards from the top of the screen. I need to know how to slow the fall of the object as slow as possible without affecting the other objects. The gravity set at the beginning of the project is:
physics.setGravity(0, 9.8)
my problem is I need to change the gravity for this object only. [import]uid: 23642 topic_id: 36591 reply_id: 336591[/import]