Sha256: 4aafd7f1e418f13f99b7031f9e601513e973e1be3e3eec31f200725ab6fec490

Contents?: true

Size: 397 Bytes

Versions: 5

Compression:

Stored size: 397 Bytes

Contents

module FMOD
  module Core

    ##
    # Strongly-typed index values to denote special types of node within a DSP
    # chain.
    module DspIndex

      ##
      # Head of the DSP chain. Equivalent of index 0.
      HEAD = -1

      ##
      # Built in fader DSP.
      FADER = -2

      ##
      # Tail of the DSP chain. Equivalent of the number of DSPs minus 1.
      TAIL = -3
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fmod-0.9.6 lib/fmod/core/dsp_index.rb
fmod-0.9.5 lib/fmod/core/dsp_index.rb
fmod-0.9.4 lib/fmod/core/dsp_index.rb
fmod-0.9.3 lib/fmod/core/dsp_index.rb
fmod-0.9.2 lib/fmod/core/dsp_index.rb