AS2 TweenLite:使用 TintPlugin
我在 AS2 中使用 TweenLite Tint 插件时遇到问题。 有没有办法减少 alpha 颜色?
例如 :
TweenLite.to ( mc, 1, { 色调:0x586AB4,blurFilter :{blurX :BLUR_FILTER,blurY :BLUR_FILTER },dropShadowFilter :{blurX :BLUR_X,blurY :BLUR_Y,距离:SHADOW_DISTANCE,强度:SHADOW_STRENGTH,角度:SHADOW_ANGLE } } );
不得使用“alpha”属性,因为它仅修改全局影片剪辑“alpha”。
提前致谢。
I have a problem with the TweenLite Tint Plugin in AS2.
Is there a way to decrease the alpha color ?
For instance :
TweenLite.to ( mc, 1, { tint : 0x586AB4, blurFilter : { blurX : BLUR_FILTER, blurY : BLUR_FILTER }, dropShadowFilter : { blurX : BLUR_X, blurY : BLUR_Y, distance : SHADOW_DISTANCE, strength : SHADOW_STRENGTH, angle : SHADOW_ANGLE } } );
The "alpha" attribute must not be use because it only modifies the global movieclip "alpha".
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TintPlugin.as 似乎忽略了 alpha。
你的意思是色调的阿尔法吗?比如色调的量?
使用 ColorTransformPlugin< 可以获得您想要的结果吗/a> 与 tint 和 tintAmount ?
例如
TintPlugin.as seems to ignore alpha.
Do you mean the tint's alpha ? as in the amount of tint ?
Would you get the result you want by using the ColorTransformPlugin with tint and tintAmount ?
e.g.