public static enum BillboardControl.Alignment extends java.lang.Enum<BillboardControl.Alignment>
Enum Constant and Description |
---|
AxialY
Aligns this Billboard to the screen, but keeps the Y axis fixed.
|
AxialZ
Aligns this Billboard to the screen, but keeps the Z axis fixed.
|
Camera
Aligns this Billboard to the camera position.
|
Screen
Aligns this Billboard to the screen.
|
Modifier and Type | Method and Description |
---|---|
static BillboardControl.Alignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BillboardControl.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillboardControl.Alignment Screen
public static final BillboardControl.Alignment Camera
public static final BillboardControl.Alignment AxialY
public static final BillboardControl.Alignment AxialZ
public static BillboardControl.Alignment[] values()
for (BillboardControl.Alignment c : BillboardControl.Alignment.values()) System.out.println(c);
public static BillboardControl.Alignment 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