Class OscillatorVoiceBase

Oscillator with ADSR envelope. Represents a single "channel" of polyphony. Should be reused for multiple notes.

Hierarchy (view full)

Constructors

  • Parameters

    • context: BaseAudioContext
    • destination: AudioNode
    • log: ((msg) => void)
        • (msg): void
        • Parameters

          • msg: string

          Returns void

    • oscillatorClass: {
          prototype: OscillatorNode;
          new (context, options?): OscillatorNode;
      }
        • new (context, options?): OscillatorNode
        • Parameters

          • context: BaseAudioContext
          • Optional options: OscillatorOptions

          Returns OscillatorNode

      • prototype: OscillatorNode

    Returns OscillatorVoiceBase

Properties

age: number
context: BaseAudioContext
envelope: GainNode
lastNoteOff?: (() => void)

Type declaration

    • (): void
    • Returns void

log: ((msg) => void)

Type declaration

    • (msg): void
    • Parameters

      • msg: string

      Returns void

noteId: number
oscillator: OscillatorNode
voiceId: number

Methods