pixi.js
    Preparing search index...

    Interface EffectAdvanced

    An effect that can be applied to a container. This is used to create effects such as filters/masks etc.

    interface Effect {
        pipe: string;
        priority: number;
        addBounds(bounds: Bounds, skipUpdateTransform?: boolean): void;
        addLocalBounds(bounds: Bounds, localRoot: Container): void;
        containsPoint(
            point: PointData,
            hitTestFn: (container: Container, point: Point) => boolean,
        ): boolean;
        destroy(): void;
    }

    Implemented by

    Index

    Properties

    pipe: string
    priority: number

    Methods

    • Parameters

      • bounds: Bounds
      • OptionalskipUpdateTransform: boolean

      Returns void

    • Returns void