SDK_HyperealVRHeadset
Overview
The HyperealVR Headset SDK script provides a bridge to the HyperealVR SDK.
Class Methods
ProcessUpdate/1
public override void ProcessUpdate(Dictionary<string, object> options)
- Parameters
Dictionary<string, object> options
- A dictionary of generic options that can be used to within the update.
- Returns
- none
The ProcessUpdate method enables an SDK to run logic for every Unity Update
ProcessFixedUpdate/1
public override void ProcessFixedUpdate(Dictionary<string, object> options)
- Parameters
Dictionary<string, object> options
- A dictionary of generic options that can be used to within the fixed update.
- Returns
- none
The ProcessFixedUpdate method enables an SDK to run logic for every Unity FixedUpdate
GetHeadset/0
public override Transform GetHeadset()
- Parameters
- none
- Returns
Transform
- A transform of the object representing the headset in the scene.
The GetHeadset method returns the Transform of the object that is used to represent the headset in the scene.
GetHeadsetCamera/0
public override Transform GetHeadsetCamera()
- Parameters
- none
- Returns
Transform
- A transform of the object holding the headset camera in the scene.
The GetHeadsetCamera method returns the Transform of the object that is used to hold the headset camera in the scene.
GetHeadsetType/0
public override string GetHeadsetType()
- Parameters
- none
- Returns
string
- The string of the headset connected.
The GetHeadsetType method returns a string representing the type of headset connected.
GetHeadsetVelocity/0
public override Vector3 GetHeadsetVelocity()
- Parameters
- none
- Returns
Vector3
- A Vector3 containing the current velocity of the headset.
The GetHeadsetVelocity method is used to determine the current velocity of the headset.
GetHeadsetAngularVelocity/0
public override Vector3 GetHeadsetAngularVelocity()
- Parameters
- none
- Returns
Vector3
- A Vector3 containing the current angular velocity of the headset.
The GetHeadsetAngularVelocity method is used to determine the current angular velocity of the headset.
HeadsetFade/3
public override void HeadsetFade(Color color, float duration, bool fadeOverlay = false)
- Parameters
Color color
- The colour to fade to.float duration
- The amount of time the fade should take to reach the given colour.bool fadeOverlay
- Determines whether to use an overlay on the fade.
- Returns
- none
The HeadsetFade method is used to apply a fade to the headset camera to progressively change the colour.
HasHeadsetFade/1
public override bool HasHeadsetFade(Transform obj)
- Parameters
Transform obj
- The Transform to check to see if a camera fade is available on.
- Returns
bool
- Returns true if the headset has fade functionality on it.
The HasHeadsetFade method checks to see if the given game object (usually the camera) has the ability to fade the viewpoint.
AddHeadsetFade/1
public override void AddHeadsetFade(Transform camera)
- Parameters
Transform camera
- The Transform to with the camera on to add the fade functionality to.
- Returns
- none
The AddHeadsetFade method attempts to add the fade functionality to the game object with the camera on it.
Updated less than a minute ago