AS2 TweenLite:使用 TintPlugin

发布于 2024-08-20 03:48:35 字数 380 浏览 9 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

得不到的就毁灭 2024-08-27 03:48:35

TintPlugin.as 似乎忽略了 alpha。

你的意思是色调的阿尔法吗?比如色调的量?

使用 ColorTransformPlugin< 可以获得您想要的结果吗/a> 与 tinttintAmount

例如

TweenLite.to ( mc, 1, { colorTransform:{tint:0x586AB4, tintAmount:0.5},blurFilter : { blurX : BLUR_FILTER, blurY : BLUR_FILTER }, dropShadowFilter : { blurX : BLUR_X, blurY : BLUR_Y, distance : SHADOW_DISTANCE, strength : SHADOW_STRENGTH, angle : SHADOW_ANGLE } } );

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.

TweenLite.to ( mc, 1, { colorTransform:{tint:0x586AB4, tintAmount:0.5},blurFilter : { blurX : BLUR_FILTER, blurY : BLUR_FILTER }, dropShadowFilter : { blurX : BLUR_X, blurY : BLUR_Y, distance : SHADOW_DISTANCE, strength : SHADOW_STRENGTH, angle : SHADOW_ANGLE } } );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文