Search code examples
androidandroid-studioarcore

Do 3D models have to be compiled with app using ARCore?


I am trying to build an Android app using ARCore and I would need for the app to display 3D models that the user should be able to download. Is that possible somehow or is it mandatory that the obj files be compiled with the app? Thanks a lot!


Solution

  • You do not need to compile 3D objects as long as you`re using format that is possible to load in runtime. For example if you're using .obj you can very easy download definition of the object and load it during runtime. For examples you can look how Poly from Google is used along with ARCore