Skip to content

Commit

Permalink
Add docs for BackdropBlurFilter class
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin committed Feb 22, 2024
1 parent ea46220 commit 5c96567
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/backdrop-blur/BackdropBlurFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ import { vertex, wgslVertex } from '../defaults';

export type BackdropBlurFilterOptions = BlurFilterOptions;

/**
* The BackdropBlurFilter applies a Gaussian blur to everything behind an object, and then draws the object on top of it.
*
* @class
* @extends BlurFilter
* @see {@link https://www.npmjs.com/package/pixi-filters|pixi-filters}
*/
export class BackdropBlurFilter extends BlurFilter
{
private _blendPass: Filter;
Expand Down

0 comments on commit 5c96567

Please sign in to comment.