Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use blender on Android

Tags:

android

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.

like image 895
Sab Avatar asked Jul 05 '11 11:07

Sab


People also ask

Can I run blender on Android?

So I've managed to run desktop blender version on my android device and decided to share the instructions. First, I would like to remind that I'm not responsible for any damage on your devices.

Can I use Blender software on my phone?

It is possible to install Blender and The GIMP on Android, with the full functionality just as their desktop counterparts. They can be installed as native applications as long as we have a few prerequisites.

Is Blender free for Android?

Free & Open Source Free to Sell Your Work. Blender is Free Software.


1 Answers

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

like image 189
Constantinius Avatar answered Oct 02 '22 23:10

Constantinius