-
Notifications
You must be signed in to change notification settings - Fork 0
B2d_world_get_continuous
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Gets whether or not the given physics world is continuous.
| Parameter | Data Type | Description |
|---|---|---|
| id | integer | index of the physics world |
boolean: Returns whether or not the physics world is continuous.
// demonstrates checking if a physics world is continuous
if (b2d_world_get_continuous()) {
// world is continuous
} else {
// world is not continuous
}
NOTOC
This is number 1