Kinetic.js doc参考告诉我们以下内容:
缓存节点以提高绘图性能,应用过滤器或创建 更准确的命中区域
但是当我尝试缓存自定义形状并对其应用一些过滤器时,如下所示
shape.cache();
shape.filters([Kinetic.Filters.Brighten]); //nothing happens
shape.filterBrightness(100); //this even throws error: Shape doesn't have this method at all
那么有什么方法可以将某种滤镜/阴影/模糊/笔划应用于缓存形状?