version: away3d 4.1 alpha
as title, the parser did not handle ‘polygons’ node.
at line 1392 in DAEParser.as, it seems the parser only parse ‘polygon’ node, so i changed that as:
case "polygon":
case "polygons": //added by J.C 2013-3-29
this.primitives.push(new DAEPrimitive(child));
am i right?