This VREnvironment is independent from the JMonkey stuff and enables to check and initialize VR specific capabilities before initializing VRAppState. The procedure is now to initialize a VR environment and, if the initialization is ok, to attach a VRAppstate to the main application. Some class has been refactored: - System classes are within the com.jme3.system package - VR related utility classes are in the package com.jme3.util.
16 lines
410 B
Java
16 lines
410 B
Java
package com.jme3.util;
|
|
|
|
/**
|
|
* A enumeration that describes the GUI display positioning modes.
|
|
* @author Julien Seinturier - (c) 2016 - JOrigin project - <a href="http://www.jorigin.org">http:/www.jorigin.org</a>
|
|
*
|
|
*/
|
|
public enum VRGUIPositioningMode {
|
|
MANUAL,
|
|
AUTO_CAM_ALL,
|
|
AUTO_CAM_ALL_SKIP_PITCH,
|
|
AUTO_OBSERVER_POS_CAM_ROTATION,
|
|
AUTO_OBSERVER_ALL,
|
|
AUTO_OBSERVER_ALL_CAMHEIGHT
|
|
}
|