public static enum VRApplication.PreconfigParameter extends java.lang.Enum<VRApplication.PreconfigParameter>
Enum Constant and Description |
---|
DISABLE_VR
Disable VR rendering, regardless VR API and devices are presents.
|
ENABLE_MIRROR_WINDOW
Display a mirror rendering on the screen.
|
FLIP_EYES
Invert the eyes.
|
FORCE_DISABLE_MSAA |
FORCE_VR_MODE
Render two eyes, regardless of VR API detection.
|
INSTANCE_VR_RENDERING
Faster VR rendering, requires some vertex shader changes (see Common/MatDefs/VR/Unshaded.j3md)
|
NO_GUI
Remove GUI node from the application.
|
PREFER_OPENGL3 |
SEATED_EXPERIENCE |
SET_GUI_CURVED_SURFACE |
SET_GUI_OVERDRAW
Show GUI even if it is behind objects.
|
USE_VR_COMPOSITOR
Is the SteamVR compositor is used (kinda needed at the moment)
|
Modifier and Type | Method and Description |
---|---|
static VRApplication.PreconfigParameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VRApplication.PreconfigParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VRApplication.PreconfigParameter USE_VR_COMPOSITOR
public static final VRApplication.PreconfigParameter FORCE_VR_MODE
public static final VRApplication.PreconfigParameter FLIP_EYES
public static final VRApplication.PreconfigParameter SET_GUI_OVERDRAW
public static final VRApplication.PreconfigParameter SET_GUI_CURVED_SURFACE
public static final VRApplication.PreconfigParameter ENABLE_MIRROR_WINDOW
false
.public static final VRApplication.PreconfigParameter PREFER_OPENGL3
public static final VRApplication.PreconfigParameter DISABLE_VR
public static final VRApplication.PreconfigParameter SEATED_EXPERIENCE
public static final VRApplication.PreconfigParameter NO_GUI
public static final VRApplication.PreconfigParameter INSTANCE_VR_RENDERING
public static final VRApplication.PreconfigParameter FORCE_DISABLE_MSAA
public static VRApplication.PreconfigParameter[] values()
for (VRApplication.PreconfigParameter c : VRApplication.PreconfigParameter.values()) System.out.println(c);
public static VRApplication.PreconfigParameter 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