Hi
Thanks for your reply. I also just found this on the site under Physics Bodies, which allows for multiple shapes to be attached to a single shape - which will get around any 8 point limit :
–
local car = display.newImage(“big_red_car.png”)
roofShape = { -20,-10, 20,-10, 20,10, -20,10 }
hoodShape = { 0,-35, 37,30, -37,30 }
trunkShape = { 0,-37, 37,-10, 23,34, -23,34, -37,-10 }
physics.addBody( car, “dynamic”,
{ density=3.0, friction=0.5, bounce=0.2, shape=roofShape },
{ density=6.0, friction=0.6, bounce=0.4, shape=hoodShape },
{ density=4.0, friction=0.5, bounce=0.4, shape=trunkShape }
)
Thanks again… [import]uid: 10814 topic_id: 9943 reply_id: 36284[/import]