在FlashCS4中动态更改3D中心点

发布于 2024-08-19 17:43:22 字数 79 浏览 5 评论 0原文

使用 CS4 中的新 3D 功能。我知道您可以通过“变换”面板手动更改 3d 中心点,但是有人知道如何在运行时动态执行此操作吗? (即通过代码)

Using the new 3D features in CS4. I know you can change the 3d center point manually via the Transform panel, but does anyone know how to do this dynamically at runtime? (ie via code)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青柠芒果 2024-08-26 17:43:22

我也不知道,但我快速进行了谷歌研究,发现 this

我想这样的事情可以解决问题:

this.transform.perspectiveProjection.projectionCenter = new Point(200,200);

i didn't know that too, but i did a quick google research and found this

i guess something like this will do the trick:

this.transform.perspectiveProjection.projectionCenter = new Point(200,200);
苦行僧 2024-08-26 17:43:22

太棒了,我为此苦苦挣扎,真的很高兴修复起来如此简单,尽管找到任何东西并不那么容易。为了居中,我这样使用它:

var centre:Point = new Point(stage.stageWidth / 2, stage.stageHeight / 2);
parent.transform.perspectiveProjection.projectionCenter = centre;

Excellent, I struggled with this, really pleased it was so simple to fix, though not so simple to find anything on. For centering I used it like this:

var centre:Point = new Point(stage.stageWidth / 2, stage.stageHeight / 2);
parent.transform.perspectiveProjection.projectionCenter = centre;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文