pixi.js
    Preparing search index...

    Interface System<INIT_OPTIONS, DESTROY_OPTIONS>Advanced

    A system is a generic interface for a renderer system. It is used to define the methods that a system should implement.

    interface System<INIT_OPTIONS = null, DESTROY_OPTIONS = RendererDestroyOptions> {
        destroy?: (options?: DESTROY_OPTIONS) => void;
        init?: (options: INIT_OPTIONS) => void;
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Properties

    destroy?: (options?: DESTROY_OPTIONS) => void

    Generic destroy methods to be overridden by the subclass

    init?: (options: INIT_OPTIONS) => void