Physics obj scale

Is there a way to scale physics body of an object? I have an image that is shrinking, growing, and bouncing around the screen. Right now, if it is shrunk, the physics body remains the same size as the original, unscaled image.

Much appreciated,
J.K. [import]uid: 66117 topic_id: 19115 reply_id: 319115[/import]

J.K,

just add some code where you are shrinking and growing… to remove the physicsbody, and then add the physicsbody with the new size…

physics.removeBody(ballInstance) physics.addBody( ballInstance, "static" , {shape=newShape}) [import]uid: 67619 topic_id: 19115 reply_id: 73680[/import]