Cosmos Journeyer API Documentation - v1.10.1
    Preparing search index...
    interface ISoundPlayer {
        createInstance(
            soundType: SoundType,
            mask: number,
            initialTargetVolume: number,
            isPonctual: boolean,
        ): ISoundInstance;
        enqueuePlay(soundType: SoundType): void;
        freeInstance(instance: ISoundInstance): void;
        playNow(soundType: SoundType): void;
        setInstanceMask(mask: number): void;
        update(): void;
    }

    Implemented by

    Index

    Methods