Adding FX to Synths

Hi mate,

When you type ‘with_fx’, make the next character a space,
and it should bring up a list of the FX’s… then choose the
one you want. So your code should look like this, and it’s
quite an interesting sound too.

Eli…

loop do
  use_synth :growl
  with_fx :wobble do
    with_fx :compressor do
      play :Gs3, attack: 0.25, sustain: 0.1, decay: 0.1, release: 0.1
      sleep 0.25
      play :Fs3, attack: 0.25, sustain: 0.1, decay: 0.1, release: 0.1
      sleep 0.25
      play :A3, attack: 0.25, sustain: 0.1, decay: 0.1, release: 0.1
      sleep 0.25
      play :B3, attack: 0.25, sustain: 0.1, decay: 0.1, release: 0.1
      sleep 0.5
    end
  end
end
1 Like