Text model export

Started by
4 comments, last by Kaze 18 years, 4 months ago
Is there any file format or technique I can use to export 3d models in a text readably way, with both vertex and texture coordinates, preferably in triangles and not more complex shapes since their draw order differs between directX and openGL. Right now im using 3Dsmax but since I may not have access to it in the future im moving to blender.
Advertisement
For blender, just write your own exporter in python. It's quite easy, I don't know python and managed a simple one.
___________________________________________________David OlsenIf I've helped you, please vote for PigeonGrape!
I recommend ac3d--Blender has an exporter. It's pretty easy to write a parser for it too.
Alias Wavefront .obj format.
Blender also has a good .obj exporter, and this format is amongst the most documented one, so you will find a lot of good documentation on the web about it.
I agree with all the above, I was able to manage writing a Python script to export Blender mesh data, and it's really simple to do.
ok il look into py script and .obj, works fine for me,
after playing with metaball modeling i dont think ill miss 3dsmax anyway

This topic is closed to new replies.

Advertisement