mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-26 09:59:07 -07:00
34 lines
840 B
ActionScript
34 lines
840 B
ActionScript
package alternativa.engine3d.loaders.collada
|
|
{
|
|
import alternativa.engine3d.alternativa3d;
|
|
|
|
use namespace alternativa3d;
|
|
use namespace collada;
|
|
|
|
public class DaeVertices extends DaeElement
|
|
{
|
|
public var §_-E6§:DaeSource;
|
|
|
|
public function DaeVertices(data:XML, document:DaeDocument)
|
|
{
|
|
super(data,document);
|
|
}
|
|
|
|
override protected function parseImplementation() : Boolean
|
|
{
|
|
var inputXML:XML = null;
|
|
inputXML = data.input.(@semantic == "POSITION")[0];
|
|
if(inputXML != null)
|
|
{
|
|
this.§_-E6§ = new DaeInput(inputXML,document).prepareSource(3);
|
|
if(this.§_-E6§ != null)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|