在AS3中改变观点 - fp9

时间:2011-08-05 11:48:19

标签: flash flex actionscript-3

有没有人知道在displayObject上使用perspectiveProjection属性的等价物,而是在flash player 9中。

PerspectiveProjection类仅在fp10中购买,但是当将3d变换应用于对象时,9也会以透视方式呈现场景。

在fp10中,这有效..

var pp:PerspectiveProjection = new PerspectiveProjection();
pp.projectionCenter = new Point(stage.stageWidth/2, 40);
_closedHolder.transform.perspectiveProjection = pp;

我需要一个可以定位闪存9的等效物吗?

1 个答案:

答案 0 :(得分:1)

Flash Player 10之前不支持您要访问的API。直到Flash Player 11才支持完整的Native 3D;随着STage3D / Molehill的推出。

如果您需要Flash Player 9中的支持;那么您应该调查使用其中一个3D框架,例如Away3DPaperVision3D。我很确定Away3D是目前首选的;随着PaperVision的发展停滞不前。