pixi.js
    Preparing search index...

    Interface RenderContainerOptionsAdvanced

    Options for the RenderContainer constructor.

    interface RenderContainerOptions {
        addBounds?: (bounds: BoundsData) => void;
        containsPoint?: (point: Point) => boolean;
        render?: RenderFunction;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addBounds?: (bounds: BoundsData) => void

    how to add the bounds of this object when measuring

    containsPoint?: (point: Point) => boolean

    how to know if the custom render logic contains a point or not, used for interaction

    the optional custom render function if you want to inject the function via the constructor