Vinyl
    Preparing search index...

    Interface PlayerRegistry

    A registry of all non-disposed Vinyl players. Used for debugging and cleanup validation.

    interface PlayerRegistry {
        players: readonly AnyRecord[];
        addPlayer(player: AnyRecord): void;
        removePlayer(player: AnyRecord): void;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    players: readonly AnyRecord[]

    Returns the non-disposed Vinyl players.

    Methods

    • Adds a player reference. All players must be removed before disposing VinylGlobal.

      Parameters

      Returns void

    • Removes a player reference.

      Parameters

      Returns void