Interface IApplicationPlugin

Any plugin that's usable for Application should contain these methods.

Memberof

PIXI

interface IApplicationPlugin {
    destroy(): void;
    init(options): void;
}

Methods

Methods

  • Called when destroying Application, scoped to Application instance.

    Returns void

  • Called when Application is constructed, scoped to Application instance. Passes in options as the only argument, which are Application constructor options.

    Parameters

    Returns void

Generated using TypeDoc