PV3D提供了一个
BasicView的类,继承这个类,可以让我们轻易在舞台上创建镜头,3D对象。
public function ThreeDStage(cameraType:String, owner:DisplayObject)
{
super(owner.width, owner.height, false, true, cameraType);
this.camera.focus = 30;
this.camera.zoom = 30;
for (var i:int = 0; i < 40; i ++)
{
var ball:Ball = new Ball(src);
scene.addChild(ball);
}
}
然后添加一个Timer对象,定时执行镜头的移动、旋转。
timer = new Timer(4000, 0);
timer.addEventListener(TimerEvent.TIMER, onTimer);
timer.start();
在这个监听函数里面,我们使用TweenLite类来移动和旋转镜头。
TweenLite.goto(this.camera, 2.5, {x:360 - Math.round(Math.random() * 720),
y:200 - Math.round(Math.random() * 400),
z:200 - Math.round(Math.random() * 400),
rotationX:40 - Math.round(Math.random() * 80),
rotationY:40 - Math.round(Math.random() * 80),
rotationZ:40 - Math.round(Math.random() * 80),
ease:GetEasingFunction.easingFunction(_tweenType).easeOut,
onComplete:_stopRendering});
这样我们的镜头就具备缓动效果了。
顺便说一下,在这个
BasicView类里面,有三个方法,
startRendering()和
stopRendering()和
singleRender()。第一个是开始每帧绘制3D对象,第二个是停止绘制3D对象,第三个是只绘制一次3D对象。
Preview:http://niuniuzhu.9lzy.cn/3dTest/test3D.html
Source:http://niuniuzhu.9lzy.cn/3dTest/srcview/index.html
[新闻]哪一个 Linux 发行版最流行?文章来源:
http://www.cnblogs.com/niuniuzhu/archive/2008/07/04/1235202.html