How do you change the scale of a physics object?
local body = display.newCircle( 0, 0, 10 );
body:setFillColor ( 255, 0, 0, 0 );
display.getCurrentStage():insert(body);
physics.addBody( body, "static", physicsData:get("myBody") );
Doing this has no effect:
body:scale(-1, 1);
I want to reverse the physics body when the object changes direction. [import]uid: 52127 topic_id: 11746 reply_id: 311746[/import]
[import]uid: 3826 topic_id: 11746 reply_id: 42757[/import]