cacheAsBitmap 无法在不同的 stageSizes 上工作?
我正在加载一个 MovieClip,其像素应该完美显示。 此 MovieClip 的每个子级以及 MovieClip 本身仅使用位置和大小的整数。 有趣的是,即使我使用“myMovieClip.cacheAsBitmap = true”有时它也会显得模糊。
有什么解决办法吗?
I'm loading a MovieClip which pixels should be displayed perfectly.
Every child of this MovieClip and the MovieClip itself uses only whole integers in position and size.
The funny thing is that even if I use "myMovieClip.cacheAsBitmap = true" sometimes it will appear blurry.
Any solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保所有 x/y 位置也是整数!
如果 x = 0.5,MC 将显得模糊,并且 cacheAsBitmap 函数会将图像存储为模糊:)
You need to make sure that all of the x/y positions are whole integers as well!
If you have x = 0.5, the MC will appear blurry, and the the cacheAsBitmap function will store the image as blurry :)