Hi all
I use Blender 2.49b for creation my 3d model. For example like here - http://www.alteredegg.com/cms/index.php?option=com_content&task=view&id=42&Itemid=18 (simple cube object with UV mapped texure). Illusoft Collada Exporter v:0.3.162 is used for export (.dae result - http://docs.google.com/View?id=dg8433z2_8fdrb6zcx)
When I import the model to JME the next code is used
public static Node getModel3DNode(InputStream is) {
Node node = null;
if (is != null) {
ColladaImporter.load(is, "model3d");
node = ColladaImporter.getModel();
node.setModelBound(new BoundingBox());
node.updateModelBound();
ColladaImporter.cleanUp();
}
return node;
}
but the cube is created without texture. Please help, what am I doing wrong?