public static enum Spatial.CullHint extends java.lang.Enum<Spatial.CullHint>
| Enum Constant and Description | 
|---|
Always
Always cull this from the view, throwing away this object
 and any children from rendering commands. 
 | 
Dynamic
Do not draw if we are not at least partially within the view frustum
 of the camera. 
 | 
Inherit
Do whatever our parent does. 
 | 
Never
Never cull this from view, always draw it. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Spatial.CullHint | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Spatial.CullHint[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Spatial.CullHint Inherit
Dynamic.public static final Spatial.CullHint Dynamic
public static final Spatial.CullHint Always
public static final Spatial.CullHint Never
public static Spatial.CullHint[] values()
for (Spatial.CullHint c : Spatial.CullHint.values()) System.out.println(c);
public static Spatial.CullHint valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null