Away3d stage.scaleMode = StageScaleMode.EXACT_FIT;不工作?
我开始我的应用程序
[SWF(width="2560", height="720", frameRate="60", backgroundColor="#000000")]
,我有两个 View3D,左边的一个位于 (0,0),大小为 (1280*720),右边的一个位于 (1280,0),大小相同(1280*720)。
我也有这一行:
stage.scaleMode = StageScaleMode.EXACT_FIT;
但是,它似乎没有改变我的纵横比以使整个应用程序可见。右侧 View3D 的大约一半位于窗口之外。
我应该如何解决这个问题?
I started my application with
[SWF(width="2560", height="720", frameRate="60", backgroundColor="#000000")]
And I have two View3D, the left one is at (0,0) with size (1280*720), the right one is at (1280,0) with the same size(1280*720).
And I also have this line:
stage.scaleMode = StageScaleMode.EXACT_FIT;
However, it seems like it didn't change my aspect ratio to let the entire application be visible. about half part of the right View3D is out of window.
How should I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
StageScaleMode.SHOW_ALL
,它应该保持宽高比并按其含义显示所有内容。Try
StageScaleMode.SHOW_ALL
, it should maintain aspect ratio and show all like it implies.