views:

30

answers:

1

Just a general question really?

Let's say I am making a game and have made a character model in Blender. How would I use this model in Java?

Would I import it somehow?

Thanks.

A: 

There are input/output scripts available for Blender that will help you.

Blend2Java, for example, is a set of Python scripts for use with Blender that will export to Java XML, which can be decoded with the standard java.beans.XMLDecoder class.

There's a good overview of how to do this at http://blend2java.sourceforge.net/blend2java-howto.html

dvanaria