AS3中的模糊过滤器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3中的模糊过滤器相关的知识,希望对你有一定的参考价值。

  1. // create blurFilter object
  2. // your x and y properties determine how much that axis is blurred.
  3. // if you use values that are powers of 2, the filter will render more quickly.
  4. // quality can be set by 1 = low, 2 = medium, and 3 = high
  5. blur = new BlurFilter(BLUR-X, BLUR-Y, QUALITY);
  6.  
  7. // Actionscript assumes you'll want to add multiple filters at once.
  8. // If you want to, you can add all of your filters to an array and
  9. // apply it that way. If you only have one, just create a quick array this way.
  10. myObject.filters = [blur];

以上是关于AS3中的模糊过滤器的主要内容,如果未能解决你的问题,请参考以下文章

应用于DisplayObject的AS3跟踪过滤器

模糊过滤器不适用于 discord.js [重复]

AS3 用图像字符替换字符串/文本

as3 json对象过滤

Safari 错误。当尝试使用模糊过滤器为 svg 转换设置动画时,safari 非常滞后

ActionScript 3 AS3中的模糊滤镜