这么屌的引擎居然要翻墙才能下载,果断百度备份下,百度云下载地址:https://pan.baidu.com/s/1nuNA8EP
英文原文地址:http://www.flare3d.com/wiki/index.php?title=Test01_-_The_Basics_1
flare3d1

[code]
//加载f3d格式的素材并显示
package
{
import base.*;
import flare.basic.*;
import flare.core.*;
import flare.system.*;
import flash.display.*;
import flash.events.*;

[SWF(frameRate = 60, width = 800, height = 450, backgroundColor = 0x000000)]

/**
* The basics, easy!.
*
* @author amyflash.com
*/
public class Test01_The_Basics1 extends Base
{
private var scene:Scene3D;
private var car:Pivot3D;
private var axis:Pivot3D;

public function Test01_The_Basics1()
{
super( "Basics 1 – Drag to look around." );

// creates a new 3d scene.
scene = new Viewer3D( this );

// add global scene progress and complete events.
scene.addEventListener( Scene3D.PROGRESS_EVENT, progressEvent );
scene.addEventListener( Scene3D.COMPLETE_EVENT, completeEvent );

// loads the objects.
car = scene.addChildFromFile( "../resources/car.f3d" );
axis = scene.addChildFromFile( "../resources/axis.f3d" );
}

private function progressEvent(e:Event):void
{
// gets the global loading progress.
trace( "progress", scene.loadProgress );
}

private function completeEvent(e:Event):void
{
trace( "complete!" );

// just scale the model.
//axis.setScale( 0.5, 0.5, 0.5 );
}
}
}
[/code]