In search of an electric guitar,,,

Not the easiest thing to create in SP… anyone got a good
approximation, out there?

Eli…


use_bpm 90
set_volume! 5
n = (ring :a2, :d3, :f3, :d3, :f2)

live_loop :electric do
  if rand(1) > 0.75
    n = (ring :a2, :d3, :r, :f3, :d3, :r, :f2)
  else
    n=n.shuffle
  end
  use_synth :pluck
  use_synth_defaults attack: 0.01, sustain: 0.5, decay: 0.1, release: 0.2, amp: 1, note_slide: 0.25
  use_transpose +12
  with_fx :distortion do
      with_fx :nrlpf, centre: 70 do
        8.times do
          play n.look, cutoff: 75, res: 0.6
          sleep 0.25
          tick
        end
      end
    end
end
3 Likes