B2d_world_set_continuous - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets whether or not the given physics world should be continuous.
Parameters
Parameter | Data Type | Description |
---|---|---|
id | integer | index of the physics world |
continuous | boolean | whether or not to be continous |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting a physics world to continuous
b2d_world_set_continuous(myworld, true);
NOTOC