Posts

Post not yet marked as solved
3 Replies
0 Views
Hey, This is the screen example I am referring to: Here you would tap and then it would bring you into the AR experience for this model. I am trying to make it so that when I Open AR, It goes straight into the Augmented reality experience, and not this screen. And pressing the "X" button takes you back to the initial app. I am using Unity to do this: using System.Collections; using System.Collections.Generic; using UnityEngine; public class ARModels : MonoBehaviour { public string iOSARLink = "AR.usdz"; // Start is called before the first frame update public void OpenARModels() { Application.OpenURL(iOSARLink); } }