B2d_body_create_circle - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Creates a new physics body in the given world with and generates a fixture with the given shape.
Parameters
| Parameter | Description |
|---|---|
| world | index of the world to create the body in |
| radius | The radius of the bodies fixture circle shape. |
Return Values
integer: Returns the index of the newly created body.
Example Call
// demonstrates creating a physics body with a fixture and circle shape
mybody = b2d_body_create_circle(myworld, 8);
NOTOC