平滑缩放影片剪辑
我有一个包含位图作为帧的 MovieClip
。如何平滑地缩放它,达到与将 Bitmap.smoothing
设置为 true
相同的效果?
我还有一个包含位图的 Sprite
。我想在 Sprite
上实现相同的效果,但设置其 scaleX
和 scaleY
属性会导致同样的问题。我尝试在子 Bitmap
实例上将 smoothing
设置为 true
,但似乎没有任何反应。
I have a MovieClip
that contains bitmaps as frames. How can I scale it smoothly, achieving the same effect as with Bitmap.smoothing
set to true
?
I also have a Sprite
that contains Bitmap
s. I want to achieve the same effect on the Sprite
, but setting its scaleX
and scaleY
properties results in the same problem. I tried setting smoothing
to true
on the children Bitmap
instances, but nothing seems to happen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一个技巧在 MovieClip 上获得类似平滑的效果,即对其应用一个小的 BlurFilter,例如:
要么这样,要么为它分配
smoothing=true
MovieClip 中的每个位图。A trick that you can use to get a smoothing-like effect on a MovieClip is to apply a small BlurFilter to it, like:
Either this, or assign
smoothing=true
for each bitmap inside the MovieClip.