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);
}
}