Reputation: 257
I want to develop a small game in Android. But for this I need to get animation into my Android project. Can I use blender to create animations and then port it into Android. If not then what other software can I use to create animation on Android. Are there any tutorials for this on the net.
Upvotes: 11
Views: 18319
Reputation: 446
I wanted to do the same : animate in blender and be able to do a 3D app for Android. I ended up choosing Unity3D which is really great : you build your animation in Blender and you export it to Unity. Then in Unity you can code your application and export a .apk :)
Cheers, bRo
Upvotes: 0
Reputation: 9
You can play with blender animations in Unity3D which runs on Android
Upvotes: 0
Reputation: 35059
With blender you can export your mesh/animation to a number of file formats. Your Android application must now be able to read the file format you have exported the animation with. A common file format blender is capable of to export is .obj
. This article describes the implementation of an .obj
file loader.
This is an excellent example for an mesh loader.
Here you can find some other links.
HTH
Upvotes: 13