com.bulletphysics.collision.dispatch
Class CollisionFlags

java.lang.Object
  extended by com.bulletphysics.collision.dispatch.CollisionFlags

public class CollisionFlags
extends Object

Flags for collision objects.


Field Summary
static int CUSTOM_MATERIAL_CALLBACK
          Enables calling ContactAddedCallback for collision objects.
static int CHARACTER_OBJECT
           
static int KINEMATIC_OBJECT
          Sets this collision object as kinematic.
static int NO_CONTACT_RESPONSE
          Disables contact response.
static int STATIC_OBJECT
          Sets this collision object as static.
 
Constructor Summary
CollisionFlags()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATIC_OBJECT

public static final int STATIC_OBJECT
Sets this collision object as static.

See Also:
Constant Field Values

KINEMATIC_OBJECT

public static final int KINEMATIC_OBJECT
Sets this collision object as kinematic.

See Also:
Constant Field Values

NO_CONTACT_RESPONSE

public static final int NO_CONTACT_RESPONSE
Disables contact response.

See Also:
Constant Field Values

CUSTOM_MATERIAL_CALLBACK

public static final int CUSTOM_MATERIAL_CALLBACK
Enables calling ContactAddedCallback for collision objects. This allows per-triangle material (friction/restitution).

See Also:
Constant Field Values

CHARACTER_OBJECT

public static final int CHARACTER_OBJECT
See Also:
Constant Field Values
Constructor Detail

CollisionFlags

public CollisionFlags()