ActionScript 位图滤镜补间

发布于 2024-09-04 11:48:40 字数 411 浏览 5 评论 0原文

我似乎无法补间任何位图过滤器。这是我的代码:

var dropShadow:DropShadowFilter = new DropShadowFilter();
mySprite.filters = [dropShadow];
var dropShadowTween:Tween = new Tween(dropShadow, "distance", Regular.easeOut, 4.0, 20, 2, true);

我的错误是什么?我也尝试过以下方法,但它不起作用:

var dropShadowTween:Tween = new Tween(mySprite.filters[0], "distance", Regular.easeOut, 4.0, 20, 2, true);

i can't seem to tween any bitmap filters. here's my code:

var dropShadow:DropShadowFilter = new DropShadowFilter();
mySprite.filters = [dropShadow];
var dropShadowTween:Tween = new Tween(dropShadow, "distance", Regular.easeOut, 4.0, 20, 2, true);

what is my mistake? i've also tried the following but it doesn't work:

var dropShadowTween:Tween = new Tween(mySprite.filters[0], "distance", Regular.easeOut, 4.0, 20, 2, true);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南城追梦 2024-09-11 11:48:40

补间滤镜的主要问题是您必须在它们更改之前重新分配它们,仅更改 dropshadow 的值不会产生任何影响,直到您再次调用 mySprite.filters = new Array(dropshadow) 。以防万一以后需要它!

我个人会使用 Greensock 的 TweenLite 及其 FilterPlugins,效果很好!

the main problem with the tweening of filters is that you have to reassign them before they change, just changing the value of the dropshadow wont make a difference until you call mySprite.filters = new Array(dropshadow) again. Just incase it becomes needed further down the line!

i would personally use TweenLite by Greensock with its FilterPlugins, works a treat!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文