我正在尝试使用https://github.com/pixijs/pixi-filters/tree/master/filters/glow中的辉光滤镜
使用pixijs v5和打字稿。
在我将辉光滤镜分配给我的精灵或容器的'filters'属性之前,一切似乎都还可以。
也许是打字稿问题,但这是我收到的错误...
类型“ GlowFilter”缺少类型中的以下属性 '过滤器':_blendMode,fragmentSrc,blendMode,uniformData和7 更多。
知道可能是什么问题吗?
this.glowFilter = new GlowFilter(8, 0, 0, 0xff00ff, 1);
this.glowFilter.outerStrength = Math.sin(1) * 10;
this.filters = [this.glowFilter];