Class Activation

java.lang.Object
com.jme3.bullet.collision.Activation

public final class Activation extends Object
Named activation states for use with a PhysicsCollisionObject.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    an active collision object that's subject to deactivation when its timer runs out (native name: ACTIVE_TAG)
    static final int
    a disabled collision object: this usually indicates that an error has occurred (native name: DISABLE_SIMULATION)
    static final int
    a collision object that's exempt from deactivation, such as a vehicle or a kinematic rigid body (native name: DISABLE_DEACTIVATION)
    static final int
    lowest legal value, for range checks
    static final int
    highest legal value, for range checks
    static final Logger
    message logger for this class
    static final int
    a deactivated collision object (native name: ISLAND_SLEEPING)
    static final int
    a collision object that's timed out but hasn't been deactivated yet? (native name: WANTS_DEACTIVATION)
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • active

      public static final int active
      an active collision object that's subject to deactivation when its timer runs out (native name: ACTIVE_TAG)
      See Also:
    • sleeping

      public static final int sleeping
      a deactivated collision object (native name: ISLAND_SLEEPING)
      See Also:
    • wantsDeactivation

      public static final int wantsDeactivation
      a collision object that's timed out but hasn't been deactivated yet? (native name: WANTS_DEACTIVATION)
      See Also:
    • exempt

      public static final int exempt
      a collision object that's exempt from deactivation, such as a vehicle or a kinematic rigid body (native name: DISABLE_DEACTIVATION)
      See Also:
    • error

      public static final int error
      a disabled collision object: this usually indicates that an error has occurred (native name: DISABLE_SIMULATION)
      See Also:
    • firstValue

      public static final int firstValue
      lowest legal value, for range checks
      See Also:
    • lastValue

      public static final int lastValue
      highest legal value, for range checks
      See Also:
    • logger

      public static final Logger logger
      message logger for this class