Audio Loom - v0.2.2
    Preparing search index...

    Interface PoolStats

    Statistics about an audio group's sound pool. Returned by AudioManager.getPoolStats.

    interface PoolStats {
        group: string;
        maxConcurrent: number;
        totalPooled: number;
        inUse: number;
        available: number;
    }
    Index

    Properties

    group: string

    The audio group name.

    maxConcurrent: number

    Maximum concurrent sounds allowed.

    totalPooled: number

    Total number of sounds currently tracked.

    inUse: number

    Number of sounds currently playing.

    available: number

    Number of available slots.