munshkr / SuperDirtMod

SuperDirt extension for parameter modulation of currently running synth nodes
GNU General Public License v3.0
4 stars 1 forks source link

Does State Values work? #2

Closed mynkit closed 1 year ago

mynkit commented 1 year ago

I tried the following patterns.

setF "tremolo" 1

d1
  $ s "superhammond/2"
  # n "[5,7,10]"
  # gain 0.5

mod1
  $ segment 32
  $ pF "tremolorate" (cF 0 "tremolo")
  # pF "tremolodepth" (0.1)

I want to control the "tremolorate" effect by state values "tremolo". I want to control the "tremolorate" effect by state values "tremolo" because I want to manipulate the effect externally in OSC. Is there any way to support state values?

mynkit commented 1 year ago

I solved the problem by changing

setF "tremolo" 1

to

streamSetF mod "tremolo" 1

Thank you.