Class: Voicemeeter::Option::OptionDelay
- Inherits:
-
Object
- Object
- Voicemeeter::Option::OptionDelay
show all
- Extended by:
- MetaFunctions
- Includes:
- IRemote
- Defined in:
- lib/voicemeeter/option.rb
Instance Method Summary
collapse
Methods included from IRemote
#apply, #initialize, #to_s
Methods included from Logging
#logger
Instance Method Details
#get ⇒ Object
33
34
35
|
# File 'lib/voicemeeter/option.rb', line 33
def get
getter("[#{@index}]").to_i
end
|
#identifier ⇒ Object
29
30
31
|
# File 'lib/voicemeeter/option.rb', line 29
def identifier
"option.delay"
end
|
#set(val) ⇒ Object
37
38
39
|
# File 'lib/voicemeeter/option.rb', line 37
def set(val)
setter("[#{@index}]", val)
end
|