spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
13 lines (12 loc) • 391 B
TypeScript
import { GroupProps } from "@react-three/fiber";
import { AudioAnalyser, Vector3 } from "three";
declare type AudioProps = {
url: string;
dCone?: Vector3;
rollOff?: number;
volume?: number;
setAudioAnalyser?: (aa: AudioAnalyser) => void;
fftSize?: 64 | 128 | 256 | 512 | 1024;
} & GroupProps;
export declare function Audio(props: AudioProps): JSX.Element;
export {};