public static enum CameraControl.ControlDirection extends java.lang.Enum<CameraControl.ControlDirection>
Enum Constant and Description |
---|
CameraToSpatial
Means, that the Camera's transform is "copied"
to the Transform of the Spatial.
|
SpatialToCamera
Means, that the Spatial's transform is "copied"
to the Transform of the Camera.
|
Modifier and Type | Method and Description |
---|---|
static CameraControl.ControlDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraControl.ControlDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraControl.ControlDirection CameraToSpatial
public static final CameraControl.ControlDirection SpatialToCamera
public static CameraControl.ControlDirection[] values()
for (CameraControl.ControlDirection c : CameraControl.ControlDirection.values()) System.out.println(c);
public static CameraControl.ControlDirection 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