This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :hey, amp: 2 | |
| end | |
| live_loop :a do | |
| sample :bd_fat | |
| sleep 0.5 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo, phase: 1 do | |
| live_audio :in | |
| end | |
| live_loop :hey do | |
| sample :bd_klub | |
| sleep 1 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :ini | |
| end | |
| live_loop :a do | |
| sample :bd_ada, amp: 1.5 | |
| sleep 0.5 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :in, amp: 3 | |
| end | |
| live_loop :a do | |
| sample :drum_cowbell | |
| sleep 2 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :hey | |
| end | |
| live_loop :a do | |
| sample :drum_bass_soft | |
| sleep 1 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :slicer do | |
| with_fx :reverb do | |
| with_fx :echo do | |
| live_audio :in, amp: 4 | |
| end | |
| end | |
| end | |
| live_loop :b do | |
| play 48 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :hey | |
| end | |
| live_loop :a do | |
| sample :elec_filt_snare | |
| sleep 1 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :in | |
| end | |
| live_loop :a do | |
| sample :bd_ada | |
| sleep 0.5 | |
| end | |
| live_loop :b do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :in | |
| end | |
| live_loop :a do | |
| with_fx :echo do | |
| play 48, release: 4 | |
| play [53, 55, 57].choose, release: 4 | |
| play 60, release: 4 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with_fx :echo do | |
| live_audio :a | |
| end | |
| live_loop :b do | |
| sample :drum_bass_hard, pan: -0.1 | |
| sleep 1 | |
| end | |
| live_loop :c do |