File tree 18 files changed +100
-0
lines changed
jme3-vr/src/main/java/com/jme3
18 files changed +100
-0
lines changed Original file line number Diff line number Diff line change 72
72
* </ul>
73
73
* Attaching an instance of this app state to an already started application may cause crashes.
74
74
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
75
+ *
76
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
77
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
78
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
79
+ * for more information.
75
80
*/
81
+ @ Deprecated
76
82
public class VRAppState extends AbstractAppState {
77
83
public static final String ID = "VRAppState" ;
78
84
private static final Logger logger = Logger .getLogger (VRAppState .class .getName ());
@@ -117,7 +123,12 @@ public VRAppState(VREnvironment environment) {
117
123
* Create a new VR app state with given settings. The app state relies on the given {@link VREnvironment VR environment}.
118
124
* @param settings the settings to use.
119
125
* @param environment the {@link VREnvironment VR environment} that this app state is using.
126
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
127
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
128
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
129
+ * for more information.
120
130
*/
131
+ @ Deprecated
121
132
public VRAppState (AppSettings settings , VREnvironment environment ){
122
133
this (environment );
123
134
this .settings = settings ;
Original file line number Diff line number Diff line change 7
7
* Some constants dedicated to the VR module.
8
8
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
9
9
* @since 3.1.0
10
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
11
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
12
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
13
+ * for more information.
10
14
*/
15
+ @ Deprecated
11
16
public class VRConstants {
12
17
/**
13
18
* An AppSettings parameter that set if the VR compositor has to be used.
Original file line number Diff line number Diff line change 31
31
*
32
32
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
33
33
*
34
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
35
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
36
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
37
+ * for more information.
34
38
*/
39
+ @ Deprecated
35
40
public class VREnvironment {
36
41
private static final Logger logger = Logger .getLogger (VREnvironment .class .getName ());
37
42
Original file line number Diff line number Diff line change 1
1
package com .jme3 .input .vr ;
2
2
3
+ /**
4
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
5
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
6
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
7
+ * for more information.
8
+ */
9
+ @ Deprecated
3
10
public class AnalogActionState {
4
11
5
12
/**
Original file line number Diff line number Diff line change 1
1
package com .jme3 .input .vr ;
2
2
3
+ /**
4
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
5
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
6
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
7
+ * for more information.
8
+ */
9
+ @ Deprecated
3
10
public class DigitalActionState {
4
11
5
12
/**
Original file line number Diff line number Diff line change @@ -73,7 +73,12 @@ make helper functions to pull the following easily from raw data (DONE)
73
73
* @author reden - phr00t
74
74
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
75
75
* @author Rickard Edén
76
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
77
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
78
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
79
+ * for more information.
76
80
*/
81
+ @ Deprecated
77
82
public class LWJGLOpenVRInput implements VRInputAPI {
78
83
79
84
private static final Logger logger = Logger .getLogger (LWJGLOpenVRInput .class .getName ());
Original file line number Diff line number Diff line change 15
15
* @author reden - phr00t - https://github.com/phr00t
16
16
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
17
17
*
18
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
19
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
20
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
21
+ * for more information.
18
22
*/
23
+ @ Deprecated
19
24
public class CartoonSSAO extends Filter {
20
25
private Pass normalPass ;
21
26
private Vector3f frustumCorner ;
Original file line number Diff line number Diff line change 8
8
/**
9
9
*
10
10
* @author Rickard
11
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
12
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
13
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
14
+ * for more information.
11
15
*/
16
+ @ Deprecated
12
17
public class FilterUtil {
13
18
/**
14
19
* A private constructor to inhibit instantiation of this class.
Original file line number Diff line number Diff line change 11
11
* Pre normal caching class.
12
12
* @author reden - phr00t - https://github.com/phr00t
13
13
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
14
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
15
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
16
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
17
+ * for more information.
14
18
*/
19
+ @ Deprecated
15
20
public class PreNormalCaching {
16
21
17
22
private static FrameBuffer cachedPreNormals ;
Original file line number Diff line number Diff line change 55
55
* @author reden - phr00t - https://github.com/phr00t
56
56
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
57
57
* @param <T> the type of the underlying renderer (subclass of {@link AbstractShadowRendererVR}).
58
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
59
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
60
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
61
+ * for more information.
58
62
*/
63
+ @ Deprecated
59
64
public abstract class AbstractShadowFilterVR <T extends AbstractShadowRendererVR > extends Filter {
60
65
61
66
protected T shadowRenderer ;
Original file line number Diff line number Diff line change 75
75
* @author Rémy Bouquet aka Nehon
76
76
* @author reden - phr00t - https://github.com/phr00t
77
77
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
78
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
79
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
80
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
81
+ * for more information.
78
82
*/
83
+ @ Deprecated
79
84
public abstract class AbstractShadowRendererVR implements SceneProcessor , Savable {
80
85
private static final LightFilter NULL_LIGHT_FILTER = new NullLightFilter ();
81
86
protected int nbShadowMaps = 1 ;
Original file line number Diff line number Diff line change 56
56
* @author Rémy Bouquet aka Nehon
57
57
* @author reden - phr00t - https://github.com/phr00t
58
58
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
59
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
60
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
61
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
62
+ * for more information.
59
63
*/
64
+ @ Deprecated
60
65
public class DirectionalLightShadowFilterVR extends AbstractShadowFilterVR <DirectionalLightShadowRendererVR > {
61
66
62
67
/**
Original file line number Diff line number Diff line change 62
62
* @author Rémy Bouquet aka Nehon
63
63
* @author reden - phr00t - https://github.com/phr00t
64
64
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
65
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
66
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
67
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
68
+ * for more information.
65
69
*/
70
+ @ Deprecated
66
71
public class DirectionalLightShadowRendererVR extends AbstractShadowRendererVR {
67
72
68
73
protected float lambda = 0.65f ;
Original file line number Diff line number Diff line change 9
9
* An instanced version of the {@link DirectionalLightShadowFilterVR directional light shadow filter}.
10
10
* @author reden - phr00t - https://github.com/phr00t
11
11
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
12
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
13
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
14
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
15
+ * for more information.
12
16
*/
17
+ @ Deprecated
13
18
public class InstancedDirectionalShadowFilter extends DirectionalLightShadowFilterVR {
14
19
private final Vector4f temp4f = new Vector4f (), temp4f2 = new Vector4f ();
15
20
Original file line number Diff line number Diff line change 44
44
* href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch10.html">http://http.developer.nvidia.com/GPUGems3/gpugems3_ch10.html</a><br>
45
45
*
46
46
* @author Rémy Bouquet aka Nehon
47
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
48
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
49
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
50
+ * for more information.
47
51
*/
52
+ @ Deprecated
48
53
public class VRDirectionalLightShadowRenderer extends DirectionalLightShadowRenderer {
49
54
50
55
/**
Original file line number Diff line number Diff line change 4
4
* An enumeration that describes the GUI display positioning modes.
5
5
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
6
6
*
7
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
8
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
9
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
10
+ * for more information.
7
11
*/
12
+ @ Deprecated
8
13
public enum VRGUIPositioningMode {
9
14
MANUAL ,
10
15
AUTO_CAM_ALL ,
Original file line number Diff line number Diff line change 28
28
* @author reden - phr00t - https://github.com/phr00t
29
29
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
30
30
*
31
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
32
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
33
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
34
+ * for more information.
31
35
*/
36
+ @ Deprecated
32
37
public class VRGuiManager {
33
38
private Camera camLeft , camRight ;
34
39
private float guiDistance = 1.5f ;
Original file line number Diff line number Diff line change 11
11
*
12
12
* @author Julien Seinturier - COMEX SA - <a href="http://www.seinturier.fr">http://www.seinturier.fr</a>
13
13
*
14
+ * @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
15
+ * For new Virtual Reality projects, use user libraries that provide OpenXR support.
16
+ * See <a href = "https://wiki.jmonkeyengine.org/docs/3.4/core/vr/virtualreality.html">Virtual Reality JME wiki section</a>
17
+ * for more information.
14
18
*/
19
+ @ Deprecated
15
20
public class VRUtil {
16
21
17
22
private static final long SLEEP_PRECISION = TimeUnit .MILLISECONDS .toNanos (4 );
You can’t perform that action at this time.
0 commit comments