Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 3, 2020 03:34
Show Gist options
  • Save nicoder/709a82c5178e56d3a34ad720608db920 to your computer and use it in GitHub Desktop.
Save nicoder/709a82c5178e56d3a34ad720608db920 to your computer and use it in GitHub Desktop.
live_loop :a do
sample :elec_blip
sleep 1
end
live_loop :b do
sync :a
use_synth :dsaw
with_fx :autotuner do |c|
control c, note: (scale :a2, :minor_pentatonic, num_octaves: 2).choose
play 60, cutoff: 30, attack: 0.5, release: 1.5, pan: 0.2
end
end
live_loop :c do
sync :a
use_synth :dsaw
with_fx :flanger do
play 45, cutoff: 30, attack: 0.5, release: 0.6, pan: -0.2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment