I want to add AR objects to my backend server and view them in my mobile application. How can I display these object without adding them to my assets folder? Thanks
Display AR object from url
Hello!
You should check out the "Previewing a Model with AR Quick Look" article, it covers the basics.
If your models are stored remotely on your server, you need to download them before you can display them with AR Quick Look. You can use a URLSession to download the data, and then use FileManager to write the data to a local file URL, and then provide that local file URL to the preview controller.