Recenter
Recenter on Application Resume
To recenter automatically when the application opens or resumes, check the Recenter Upon Application Resume` in JMRRig -> JMR Tracker Manager. 

Parameter
Description
shouldRecenterUponApplicationResume
Recenter position and rotation if value is true
using JMRSDK;
using UnityEngine;
public class TrackingExample : MonoBehaviour
{
    void OnEnable()
    {
        JMRTrackerManager.Instance.SetRecenterUponApplicationResume(true);
    }
}Recenter Actions
How to use recenter action events
JMRSystemActions.Instance.OnRecenterStart.AddListener(() => 
{ 
    Debug.log("On Recenter Start"); 
});JMRSystemActions.Instance.OnRecenterCancelled.AddListener(() => 
{ 
    Debug.log("On Recenter Cancelled"); 
});JMRSystemActions.Instance.OnRecenterEnd.AddListener(() => 
{ 
    Debug.log("On Recenter End"); 
});Recenter Head/Rig Function
Exposed a function to recenter game scene anytime
JMRTrackerManager.Instance.Recenter()Last updated