Hai, Can we change physics body properties in runtime. My code is
local ground = display.newImage( “ground.png” )
ground.x = 160; ground.y = 445
physics.addBody( ground, “static”, { friction=0.5, bounce=0.3 } )
I want to change the bounce value need to 1.0 in run time, is it possible…
Can any one help me