In my app I add physics code to my ball image here’s the code:
– display ball image
local ball = display.newImage( “ball.png” )
ball.x = 145; ball.y = 200
– add physics to the ball
physics.addBody ( ball, { friction=0.5, bounce=2 } )
:that is the end of the codeWhen I relaunch my ball just stands still floating in the air please help!