Navigation
API > API/Plugins > API/Plugins/XRBase > API/Plugins/XRBase/UHeadMountedDisplayFunctionLibra-
References
| Module | XRBase |
| Header | /Engine/Plugins/Runtime/XRBase/Source/XRBase/Public/HeadMountedDisplayFunctionLibrary.h |
| Include | #include "HeadMountedDisplayFunctionLibrary.h" |
| Source | /Engine/Plugins/Runtime/XRBase/Source/XRBase/Private/HeadMountedDisplayFunctionLibrary.cpp |
UFUNCTION&40;BlueprintPure, Category&61;"Input&124;HeadMountedDisplay",
Meta&61;&40;AdvancedDisplay&61;"LeftFOV,RightFOV,TopFOV,BottomFOV,Distance,NearPlane,FarPlane"&41;&41;
static void GetTrackingSensorParameters
&40;
FVector & Origin,
FRotator & Rotation,
float & LeftFOV,
float & RightFOV,
float & TopFOV,
float & BottomFOV,
float & Distance,
float & NearPlane,
float & FarPlane,
bool & IsActive,
int32 Index
&41;
Remarks
If the HMD has a positional sensor, this will return the game-world location of it, as well as the parameters for the bounding region of tracking. This allows an in-game representation of the legal positional tracking range. All values will be zeroed if the sensor is not available or the HMD does not support it.
Parameters
| Name | Description |
|---|---|
| Index | (in) Index of the tracking sensor to query |
| Origin | (out) Origin, in world-space, of the sensor |
| Rotation | (out) Rotation, in world-space, of the sensor |
| LeftFOV | (out) Field-of-view, left from center, in degrees, of the valid tracking zone of the sensor |
| RightFOV | (out) Field-of-view, right from center, in degrees, of the valid tracking zone of the sensor |
| TopFOV | (out) Field-of-view, top from center, in degrees, of the valid tracking zone of the sensor |
| BottomFOV | (out) Field-of-view, bottom from center, in degrees, of the valid tracking zone of the sensor |
| Distance | (out) Nominal distance to sensor, in world-space |
| NearPlane | (out) Near plane distance of the tracking volume, in world-space |
| FarPlane | (out) Far plane distance of the tracking volume, in world-space |
| IsActive | (out) True, if the query for the specified sensor succeeded. |