Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the SceneKit equivalent for Android? [closed]

I created an ARKit app using SceneKit Framework. I want to bring it over to ARCore but using straight OpenGL seems daunting.

Is there a high-level scene graph framework like SceneKit for Android developers that can help to import and render 3D models?

like image 896
maranellored Avatar asked Jan 26 '18 03:01

maranellored


3 Answers

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

It's also thoroughly documented, with development guides, a full Javadoc, and code samples. A good starting point is trying out this AR retail code sample -- it's a full ARCore application written with ViroCore.

like image 132
Raj Advani Avatar answered Nov 10 '22 07:11

Raj Advani


Here's the LibGDX and ARCore blog too: https://medium.com/@wilkinsonclay/investigating-arcore-with-libgdx-f69b83764118

like image 2
Clayton Wilkinson Avatar answered Nov 10 '22 06:11

Clayton Wilkinson


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

like image 1
Steven Mohr Avatar answered Nov 10 '22 05:11

Steven Mohr