pixi.js
    Preparing search index...

    Interface ExtensionFormatLooseAdvanced

    Format when registering an extension. Generally, the extension should have these values as extension static property, but you can override name or type by providing an object.

    interface ExtensionFormatLoose {
        name?: string;
        priority?: number;
        ref: any;
        type: ExtensionType | ExtensionType[];
    }
    Index

    Properties

    Properties

    name?: string

    Optional. Some plugins provide an API name/property, such as Renderer plugins

    priority?: number

    Optional, used for sorting the plugins in a particular order

    ref: any

    Reference to the plugin object/class

    The extension type, can be multiple types