pixijs-filters

Apply PixiJS v8 visual filters to containers and sprites.

302|15|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/pixijs/pixijs-skills --skill pixijs-filters
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pixijs-filters
Source: https://github.com/pixijs/pixijs-skills/tree/main/skills/pixijs-filters
Command: npx skills add https://github.com/pixijs/pixijs-skills --skill pixijs-filters

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Attach visual effects to PixiJS v8 containers by applying one or more filters in a simple pipeline, reducing manual rendering work.

Core Features & Use Cases

  • Built-in filters such as AlphaFilter, BlurFilter, ColorMatrixFilter, DisplacementFilter, and NoiseFilter enable common post-processing effects.
  • Custom shader filters created with Filter.from() using GLSL/WGSL to implement bespoke visuals.
  • Flexible options like resolution, padding, antialias, blendRequired, and filterArea for performance tuning and precise bounds.
  • Easy integration with the pixi-filters community package for extended effects.

Quick Start

Create a sprite, attach a BlurFilter and a ColorMatrixFilter, and assign them to the sprite.filters property to see the effect.

Frequently Asked Questions about pixijs-filters

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I apply visual filters to a PixiJS v8 container?

To apply visual filters in PixiJS v8, assign an array of filter instances, such as BlurFilter or ColorMatrixFilter, to the container's filters property to build a post-processing rendering pipeline.

Can I create custom shader filters in PixiJS v8?

Yes, you can create custom shader filters by using Filter.from() with GLSL or WGSL code to implement bespoke visual effects and attach them directly to containers or sprites.

What options are available for tuning PixiJS filter performance?

PixiJS filters support performance tuning through options like resolution, padding, antialias, blendRequired, and filterArea to control rendering bounds and visual quality.

Does this Skill support integrating with the pixi-filters community package?

Yes, the Skill integrates with the pixi-filters community package to assemble extended reusable filter pipelines and apply additional post-processing effects to containers.

What built-in post-processing effects are available in PixiJS v8?

Built-in PixiJS v8 filters include AlphaFilter, BlurFilter, ColorMatrixFilter, DisplacementFilter, and NoiseFilter for common post-processing visual enhancements.