将混合模式和滤镜同时应用于同一个影片剪辑?
我试图通过混合模式和发光滤镜的组合来创建“霓虹灯发光效果”
问题是,如果一起应用它们似乎会相互抵消......没有任何动态地执行此操作。
有人可以帮忙吗?
Im trying to create a 'neon glow effect thru a combination of both BlendModes and glow filter
Problem is, they seem to cancel each other out if applied together...not having any luch doing this dynamically.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下操作:
BlendMode
应用于您的图形BitmapData
和draw()
您的图形,以便获得它的新位图表示形式(无论如何,应用混合模式或过滤器都会做什么)过滤器
应用到这个新的位图
You could try something like:
BlendMode
to your graphicBitmapData
, anddraw()
your graphic so you get a new bitmap representation of it (pretty much what applying a blendmode or a filter will do anyway)Filter
to this newBitmap