Skip to main content

Get Head Rotation

public void OnHeadRotation(Quaternion quaternion)

ParameterDescription
QuaternionRotation of head in world coordinate system

Action gives the updated head rotation.

info

Action will be called only when it's subscribed to a method. Action must be subscribed to the method with a matching signature.

using JMRSDK;
using UnityEngine;

public class TrackingHeadRotationExample : MonoBehaviour
{
void OnEnable()
{
// subscribing to the action
JMRTrackerManager.OnHeadRotation += onHeadRotationLocal;
}
void OnDisable()
{
// unsubscribing to the action
JMRTrackerManager.OnHeadRotation -= onHeadRotationLocal;
}
//this action will be called per frame automatically
// get rotation when rotation updating
public void onHeadRotationLocal(Quaternion rotation)
{
Quaternion Rot = rotation;
}
}