Just jumping in on this thread. I am seeing the following after having upgraded to the SVN base as of today.
Prior to this SVN pull, I was able to do the following, which worked but is no longer a valid call SURPRISE!!! :o.
org.xith3d.loaders.scene.Scene sc= new OBJLoader().load(name);
bg=sc.getSceneGroup();
I am now trying something like the example code
model = new OBJLoader().loadModel(demoFolder.getResource( myModel ));
java.io.FileNotFoundException: Untitled.mtl (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(Unknown Source)
at java.io.FileReader.(Unknown Source)
at org.xith3d.loaders.models.impl.obj.MaterialLibLoader.(MaterialLibLoader.java:87)
at org.xith3d.loaders.models.impl.obj.OBJLoader.load(OBJLoader.java:148)
at org.xith3d.loaders.models.impl.obj.OBJLoader.loadModel(OBJLoader.java:195)
at org.xith3d.loaders.models.impl.obj.OBJLoader.loadModel(OBJLoader.java:202)
at org.xith3d.loaders.models.impl.obj.OBJLoader.loadModel(OBJLoader.java:207)