I'm having some trouble creating a AreaClodMesh from my imported COLLADA file… The particular trouble I'm having is how to get the TriMesh from the Node returned by:
Node importedModel = ColladaImporter.getModel();
Any ideas?
EDIT: some background would be good... I know there are TriMeshes in there, I can see them in SceneWorker/SceneMonitor... I just can't seem to get to them when iterating through the Nodes. I get an NPE after the first pass of the for loop
Edit Again:
The plot thickens apparently... it seems that the importedModel node has no children when it's first received from the COLLADA importer.. yet I use the children extensively later on in the application. Going to try rewriting my import routines