SceneKit equivalent for Android?

I created an ARKit application using SceneKit. I want to pass it to ARCore, but using direct OpenGl seems intimidating. Is there a high-level scene chart structure like SceneKit for Android developers?

+4
source share
3 answers

ViroCore is SceneKit for Android. With ViroCore, you describe high-level scenes in Java, without the need to implement rendering algorithms yourself in OpenGL. It has built-in integration with ARCore, and its set of rendering functions is equivalent to SceneKit.

It is also thoroughly documented, development guides , full Javadoc and code examples . A good starting point is to search for this sample retail code AR - it is a complete ARCore application written with ViroCore.

+2
source

You can use https://github.com/Rajawali/Rajawali or https://libgdx.badlogicgames.com/ for this purpose. A good start for Rajawali and ARCore is this https://medium.com/@alex_dennis/intro-to-augmented-reality-development-with-tango-b9ea2923bdea blog post . It's about Tango, but since ARCore is based on Tango, the concepts and APIs are pretty much the same.

+1

Source: https://habr.com/ru/post/1692744/


All Articles