Class: Voicemeeter::Strip::PhysicalStrip
- Extended by:
- MetaFunctions
- Includes:
- Mixins::Fx, Mixins::Xy::Color, Mixins::Xy::Fx, Mixins::Xy::Pan
- Defined in:
- lib/voicemeeter/strip.rb
Overview
Represents a Physical Strip
Instance Attribute Summary collapse
-
#comp ⇒ Object
readonly
Returns the value of attribute comp.
-
#denoiser ⇒ Object
readonly
Returns the value of attribute denoiser.
-
#device ⇒ Object
readonly
Returns the value of attribute device.
-
#eq ⇒ Object
readonly
Returns the value of attribute eq.
-
#gate ⇒ Object
readonly
Returns the value of attribute gate.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(remote, i) ⇒ PhysicalStrip
constructor
A new instance of PhysicalStrip.
Methods inherited from Base
Methods included from Mixins::Fades
Methods included from Mixins::Outputs
Methods included from IRemote
Methods included from Logging
Constructor Details
#initialize(remote, i) ⇒ PhysicalStrip
Returns a new instance of PhysicalStrip.
43 44 45 46 47 48 49 50 |
# File 'lib/voicemeeter/strip.rb', line 43 def initialize(remote, i) super @comp = StripComp.new(remote, i) @gate = StripGate.new(remote, i) @denoiser = StripDenoiser.new(remote, i) @eq = StripEq.new(remote, i) @device = StripDevice.new(remote, i) end |
Instance Attribute Details
#comp ⇒ Object (readonly)
Returns the value of attribute comp.
40 41 42 |
# File 'lib/voicemeeter/strip.rb', line 40 def comp @comp end |
#denoiser ⇒ Object (readonly)
Returns the value of attribute denoiser.
40 41 42 |
# File 'lib/voicemeeter/strip.rb', line 40 def denoiser @denoiser end |
#device ⇒ Object (readonly)
Returns the value of attribute device.
40 41 42 |
# File 'lib/voicemeeter/strip.rb', line 40 def device @device end |
#eq ⇒ Object (readonly)
Returns the value of attribute eq.
40 41 42 |
# File 'lib/voicemeeter/strip.rb', line 40 def eq @eq end |
#gate ⇒ Object (readonly)
Returns the value of attribute gate.
40 41 42 |
# File 'lib/voicemeeter/strip.rb', line 40 def gate @gate end |