UNPKG

@vrspace/babylonjs

Version:

vrspace.org babylonjs client

24 lines (23 loc) 508 B
/** * Sound mixer component. */ export class SoundMixer { static instance: any; /** * Returns the sound mixer instance, creates a new one if needed. * @returns { SoundMixer } */ static getInstance(scene: any): SoundMixer; constructor(scene: any); scene: any; form: FormArea; init(): void; sounds: { avatar: any[]; spatial: any[]; other: any[]; }; show(): void; dispose(): void; } import { FormArea } from './form-area.js';