Package com.jme3.input.vr
Class AnalogActionState
java.lang.Object
com.jme3.input.vr.AnalogActionState
Deprecated.
The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
For new Virtual Reality projects, use user libraries that provide OpenXR support.
See Virtual Reality JME wiki section
for more information.
-
Field Summary
Modifier and TypeFieldDescriptionfinal float
Deprecated.The change in the X coordinate since the last framefinal float
Deprecated.The change in the Y coordinate since the last framefinal float
Deprecated.The change in the Z coordinate since the last framefinal float
Deprecated.The X coordinate of the analog data (typically between -1 and 1 for joystick coordinates or 0 and 1 for trigger pulls)final float
Deprecated.The Y coordinate of the analog data (typically between -1 and 1) Will be zero if the analog action doesn't have at least 2 dimensionsfinal float
Deprecated.The Z coordinate of the analog data (typically between -1 and 1) Will be zero if the analog action doesn't have at least 3 dimensions -
Constructor Summary
ConstructorDescriptionAnalogActionState
(float x, float y, float z, float deltaX, float deltaY, float deltaZ) Deprecated. -
Method Summary
-
Field Details
-
x
public final float xDeprecated.The X coordinate of the analog data (typically between -1 and 1 for joystick coordinates or 0 and 1 for trigger pulls) -
y
public final float yDeprecated.The Y coordinate of the analog data (typically between -1 and 1) Will be zero if the analog action doesn't have at least 2 dimensions -
z
public final float zDeprecated.The Z coordinate of the analog data (typically between -1 and 1) Will be zero if the analog action doesn't have at least 3 dimensions -
deltaX
public final float deltaXDeprecated.The change in the X coordinate since the last frame -
deltaY
public final float deltaYDeprecated.The change in the Y coordinate since the last frame -
deltaZ
public final float deltaZDeprecated.The change in the Z coordinate since the last frame
-
-
Constructor Details
-
AnalogActionState
public AnalogActionState(float x, float y, float z, float deltaX, float deltaY, float deltaZ) Deprecated.
-