Having Trouble importing skinned mesh into PaperVision3d 3.0 from COLLADA
I can export just a mesh, but a mesh with a Skin modifier bound to Biped does not work. The ski开发者_StackOverflow中文版n is not imported as TriangleMesh3D or a skinning class, and is instead a DisplayObject3D class that lacks geometry. No warnings are given.
Any idea how I should import a COLLADA file with skinning importation?
The trick is to load it as a DAE as opposed to a COLLADA. For instance:
var cow2:DAE = new DAE();
cow2.load(new XML(new CowDAE()), cowMaterials);
精彩评论