Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/timknip/ascollada

AS3 library to parse COLLADA files
https://github.com/timknip/ascollada

Last synced: 22 days ago
JSON representation

AS3 library to parse COLLADA files

Awesome Lists containing this project

README

        

/**
*
*/
private function buildNode(node:DaeNode):void {

}

/**
*
*/
private function buildScene():void {
buildNode(this.document.scene);
}

/**
*
*/
public function parse (collada:XML) {
var document:DaeDocument = new DaeDocument();
this.document.addEventListener(Event.COMPLETE, onParseComplete);
this.document.read(collada);
}

/**
*
*/
private function onParseComplete(e:Event) : void {
buildScene();
}