Blender - loader

Blitz3D Forums/Blitz3D Beginners Area/Blender - loader

Leszek(Posted 2008) [#1]
How are you loading model with blender?
Can you give me sample this loading.

My friends create 3d model in Blender and I must load this model in Blitz3D.

Help me Please !!!!!


Ross C(Posted 2008) [#2]
Loadmesh?

model = Loadmesh("model.b3d")

or

model = Loadmesh("model.x")

or

model = Loadmesh("model.3ds")


LineOf7s(Posted 2008) [#3]
You want to export the .blend file to a .b3d file (or any other of the formats listed by Ross C above) and then load them with LoadMesh as advised.

HERE is a thread about a Blender -> .b3d exporter, which may well be your best bet.


Leszek(Posted 2008) [#4]
Thanks, but I have small problem. My friend create animation in Blender and I export to b3d file. However not there
animation. I don't know why ??? Model see which not animate.
Why ??? Animation is in this model.

I use loadanim after loadanimmesh and nothing.


Leszek(Posted 2008) [#5]
OK My program work very good. I don't have problem.