A density snippet


live_loop :dense do
  with_fx :compressor do
    with_fx :ixi_techno,cutoff_max: rrand(10,120) do
      density 8 do
        use_synth :pluck
        play (ring, 60,64,72,84,96).choose, release: rrand(0.1, 2), pan: rrand(-1, 1)
        sleep 1
      end
    end
  end
end



live_loop :dense2 do
  with_fx :compressor do
    with_fx :ixi_techno,cutoff_max: rrand(10,120) do
      density 4 do
        play (ring, 36, 48, 64,67,76).choose, release: rrand(0.1, 2), pan: rrand(-1, 1), cutoff: rrand(60,120)
        sleep 1
      end
    end
  end
end

live_loop :dense3 do
  with_fx :compressor do
    with_fx  :reverb, room: 0.9 do
      density 4 do
        play chord(:c4, :major7), release: rrand(0.1, 2), pan: rrand(-1, 1), cutoff: rrand(60,120), amp: 0.4
        sleep 1
      end
    end
  end
end