SceneKit equivalent for Android? [closed]

2019-06-28 01:47发布

I created an ARKit app using SceneKit. 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?

标签: arcore
3条回答
叛逆
2楼-- · 2019-06-28 02:31

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.

查看更多
闹够了就滚
3楼-- · 2019-06-28 02:40

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.

查看更多
登录 后发表回答