Enum Class CullHint

java.lang.Object
java.lang.Enum<CullHint>
com.ardor3d.scenegraph.hint.CullHint
All Implemented Interfaces:
Serializable, Comparable<CullHint>, Constable

public enum CullHint extends Enum<CullHint>
Describes how a scene object interacts with Ardor3D's frustum culling.
  • Enum Constant Details

    • Inherit

      public static final CullHint Inherit
      Do whatever our parent does. If no parent, we'll default to dynamic.
    • Dynamic

      public static final CullHint Dynamic
      Do not draw if we are not at least partially within the view frustum of the renderer's camera.
    • Always

      public static final CullHint Always
      Always cull this from view.
    • Never

      public static final CullHint Never
      Never cull this from view. Note that we will still get culled if our parent is culled.
  • Method Details

    • values

      public static CullHint[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CullHint valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null