final long time = System.currentTimeMillis();
final ColladaImporter colladaImporter = new ColladaImporter();
// Load the collada scene
final ColladaStorage storage = colladaImporter.load(source);
colladaNode = storage.getScene();
setupSkins(storage);
setupAnimations(storage);
System.out.println("Importing: " + source);
System.out.println("Took " + (System.currentTimeMillis() - time) + " ms");
// Add colladaNode to root
_root.attachChild(colladaNode);
// Setup camera
ReadOnlyVector3 upAxis = Vector3.UNIT_Y;
if (storage.getAssetData().getUpAxis() != null) {
upAxis = storage.getAssetData().getUpAxis();
}
positionCamera(upAxis);
} catch (final Exception ex) {
ex.printStackTrace();