4. ARGearManager
ARGearManager controls the overall workflow of ARGear and provides all ARGear functionalities.
4.1. Init & Create
4.2. Run
4.3. Resume / Pause
private void OnApplicationPause(bool pause)
{
if (pause)
ARGearNative.Pause();
else
ARGearNative.Resume();
}4.4. Destroy
Last updated
Was this helpful?