Skip to content

B2d_world_get_continuous

hugh greene edited this page Jun 20, 2022 · 1 revision

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

Clone this wiki locally