Interface NoiseOptions

interface NoiseOptions {
    context: BaseContext;
    fadeIn: Unit.Time;
    fadeOut: Unit.Time;
    mute: boolean;
    onstop: onStopCallback;
    playbackRate: number;
    type: NoiseType;
    volume: number;
}

Hierarchy

  • SourceOptions
    • NoiseOptions

Properties

context: BaseContext
fadeIn: Unit.Time
fadeOut: Unit.Time
mute: boolean
onstop: onStopCallback
playbackRate: number
type: NoiseType
volume: number