B2d_world_get_continuous - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Gets whether or not the given physics world is continuous.

Parameters

Parameter Data Type Description
id integer index of the physics world

Return Values

boolean: Returns whether or not the physics world is continuous.

Example Call

// demonstrates checking if a physics world is continuous
if (b2d_world_get_continuous()) {
  // world is continuous
} else {
  // world is not continuous
}

NOTOC