hey there david,
here is what I did:
* I took 0.90 of ColladaMaya (brand-new), which still outputs control_vertices elements with illegal id-attributes
* erased the id-attributes off the elements as you suggested
now what I get is an exception (which might or might have not anything to do with above issue) :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| Exception in thread "main" com.xith3d.loaders.ParsingErrorException at com.whoola.core.media.xith.XithColladaLoader.load(Unknown Source) at de.hh.gtgetest.HelloXith3D.<init>(HelloXith3D.java:60) at de.hh.gtgetest.HelloXith3D.main(HelloXith3D.java:35) Caused by: com.whoola.core.lang.NullArgumentException at com.whoola.core.lang.NullArgumentException.check(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertMeshType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertGeometryType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertInstanceGeometryType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertNodeType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertVisualSceneType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertInstanceWithExtra(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertColladaSceneType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.convertColladaType(Unknown Source) at com.whoola.core.media.xith.XithColladaImporter.importColladaType(Unknown Source) at com.whoola.core.media.xith.XithColladaLoader.createScene(Unknown Source) ... 3 more |
the regarding line (60) is where I do:
1
| scene = colladaLoader.load("D:/Entwicklung/eclipse/workspace/GTGETest/resources/carCOLLADA.dae").getSceneGroup(); |
(scene being a BranchGroup)
did you manage to actually load the model ?
regards, Nils