[Resolved] Import image as a circle

I created a ball in Photoshop CS6, saved it as a .png and then put it into a corona project. The corona simulator thinks that the object is a square and the ball will not roll, it slides. Is there a way to import the image as a circle instead of a square. [import]uid: 82872 topic_id: 28217 reply_id: 328217[/import]

physics.addBody( ball, "dynamic", { radius = 10 } )  

You also have to physics.start() and require physics to enable physics. More info here if you are interested, look under circular bodies to learn about density, friction and bounce additions.
http://developer.coronalabs.com/reference/index/physicsaddbody

local physics = require( "physics" )  
physics.start()  

[import]uid: 77199 topic_id: 28217 reply_id: 113998[/import]

Thank you so much! [import]uid: 82872 topic_id: 28217 reply_id: 114005[/import]

I got to display an image and started trying different variations of friction and bounciness. The ball still seemed to slide and not rotate. I added detail to the ball to tell if it rotated and it would not. Is there something I am missing? [import]uid: 82872 topic_id: 28217 reply_id: 114253[/import]