peter2
8/19/2017 - 6:36 PM

sonic_pi_2.rb

live_loop :test do
  use_synth :hollow
  with_fx :distortion do
    [1, 4, 2, 3].each do |d|
      play chord_degree(d, :c, :major, 3, invert: 1), attack: 0.1, sustain: 0.2, decay: 0.5, pitch: 3
      sleep 0.5
    end
  end
end