2012-01-05 79 views
2

如何使用perspectiveLens更改Away3D中的投影中心。Away3D 4.x更改投影中心

我知道它可以與標準的閃式3D庫來完成,使用:

root.transform.perspectiveProjection.projectionCenter = new Point(center.x, center.y); 

但尋找到的Away3D類時不存在這樣的功能。
通過使用另一種方法,away3D實現了這一點嗎?

回答

0

Object3d或其下降的任何東西確實有'pivotPoint'。

但通常你只想移動你的相機。

camera.z = -1000; 
camera.x = 500; 
camera.y = 500; 

// after moving the camera you'll want to re-orient towards your scene. 
//for instance to look at the origin: 
camera.lookAt(new Vector3D(0,0,0)); 

編輯: 如果你只是想旋轉對象試盤()間距()和滾動()。