StripMixins removed

This commit is contained in:
onyx-and-iris 2023-07-09 19:43:26 +01:00
parent 6cb7ae020e
commit ccd7e93e94

View File

@ -1,6 +1,5 @@
module Voicemeeter
module Mixins
module StripMixins
module Fades
def fadeto(target, time)
self.setter("FadeTo", "(#{target}, #{time})")
@ -13,6 +12,15 @@ module Voicemeeter
end
end
module Return
include Meta_Functions
def initialize(remote, i)
super
make_accessor_float :returnreverb, :returndelay, :returnfx1, :returnfx2
end
end
module Apps
def appgain(name, gain)
self.setter("AppGain", "(\"#{name}\", #{gain})")
@ -70,18 +78,5 @@ module Voicemeeter
make_accessor_bool :postreverb, :postdelay, :postfx1, :postfx2
end
end
module Return
include Meta_Functions
def initialize(remote, i)
super
make_accessor_float :returnreverb,
:returndelay,
:returnfx1,
:returnfx2
end
end
end
end
end