Interface ISystem<InitOptions, DestroyOptions>

Interface for systems used by the PIXI.Renderer.

PIXI

interface ISystem<InitOptions = null, DestroyOptions = null> {
    destroy(options?: DestroyOptions): void;
    init(options?: InitOptions): void;
}

Type Parameters

  • InitOptions = null
  • DestroyOptions = null

Implemented by

Methods

Methods

  • Generic destroy methods to be overridden by the subclass

    Parameters

    Returns void

  • Parameters

    Returns void