UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

16 lines (15 loc) 501 B
import type { ExtensionMetadata } from '../../../extensions/Extensions'; import type { Effect } from '../../../scene/container/Effect'; import type { PoolItem } from '../../../utils/pool/Pool'; export declare class ColorMask implements Effect, PoolItem { static extension: ExtensionMetadata; priority: number; mask: number; pipe: string; constructor(options: { mask: number; }); init(mask: number): void; destroy(): void; static test(mask: any): boolean; }