重叠项目的 Flash 透明度
在 Flash 中,我有一个包含多个重叠子项的容器。当我给这个容器设置 alpha 值 0.5 时,可以看到一些子容器位于与它们重叠的其他容器后面。我宁愿能够将整个事物作为合成图像并以这种方式混合。
有什么想法吗?父容器上的cacheAsBitmap 没有任何效果。
In Flash, I have a container with several overlapping children. When I give this container an alpha value of .5, some of the children can be seen behind others that overlap them. I would rather be able to take the whole thing as a composite image and blend it that way.
Any ideas? cacheAsBitmap on the parent container doesn't have any effect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
混合模式.层
BlendMode.LAYER
好吧,使用 Bitmap.draw() 函数...然后只是对该图像进行 Alpha 处理。
例如,将其放入 MC 中并为其指定 alpha 值(例如)。
Well, use Bitmap.draw() function... And then just alpha that image.
Like, put it into a MC and give an alpha value to it (for example).