theDeSilva.com Andrew de Silva

Embeding Collada files on Flex

August 20th, 2009 · No Comments · Flex

Here’s how to embed collada files into your Flex. 1 2 3 4 5 6 7   [Embed(source="collada.dae", mimeType="application/octet-stream")] private var Model3D:Class; var byteArray:ByteArray = new Model3D(); var collada:DAE = new DAE(); collada.load(byteArray, material); scene.addChild(collada);

[Read more →]

Tags:···