B2d_body_create_box - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Creates a new physics body in the given world with and generates a fixture with the given box shape.
Parameters
| Parameter | Description |
|---|---|
| world | index of the world to create the body in |
| halfwidth | half the width of the box shape |
| halfheight | half the height of the box shape |
Return Values
integer: Returns the index of the newly created body.
Example Call
// demonstrates creating a physics body with a fixture and shape
mybody = b2d_body_create_box(myworld, 5, 5);
NOTOC