Class: Voicemeeter::Fx

Inherits:
Object
  • Object
show all
Extended by:
MetaFunctions
Includes:
IRemote
Defined in:
lib/voicemeeter/fx.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from IRemote

#apply, #to_s

Methods included from Logging

#logger

Constructor Details

#initialize(remote) ⇒ Fx

Returns a new instance of Fx.



8
9
10
11
12
# File 'lib/voicemeeter/fx.rb', line 8

def initialize(remote)
  super
  @reverb = FxReverb.new(remote)
  @delay = FxDelay.new(remote)
end

Instance Attribute Details

#delayObject (readonly)

Returns the value of attribute delay.



6
7
8
# File 'lib/voicemeeter/fx.rb', line 6

def delay
  @delay
end

#reverbObject (readonly)

Returns the value of attribute reverb.



6
7
8
# File 'lib/voicemeeter/fx.rb', line 6

def reverb
  @reverb
end

Instance Method Details

#identifierObject



14
15
16
# File 'lib/voicemeeter/fx.rb', line 14

def identifier
  :fx
end