Post not yet marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as unsolved with 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);
}
}