Hi all,
Here’s a track written in 2.11 SP and posted to Soundcloud
some months back. The TB303 is quite distinctive, low and
fruity like a 303 should be…
This is the exact same code, lifted out of the original .rb file.
Play it for yourself in 3.1, and you can hear a significant change
in the 303…
If you drop the ’ use_synth_defaults cutoff: 85’ down to about 50,
it starts to sound similar to the originial, but with an annoying click
in it.
Eli…
use_bpm 90
ripple = (ring, 0,1,)
ripple1 = (ring, 0,1,2)
live_loop :beats do
sleep 4
end
live_loop :bar do
sleep 1
end
with_fx :reverb do
live_loop :bass1 do
if one_in(4) then
sleep 4
else
sync :bar
use_synth :tb303
use_synth_defaults cutoff: 85, release: 0.15, attack: 0.05, decay: 0.05,
sustain_level: 0.3, cutoff_sustain_level: 0.7, sustain: 0.1, res: 0.6, amp: 0.2
4.times do
play (ring, :c2, :c2, :as1, :f2, :ds2).tick + 0.5, wave: ripple.look+1
play (ring, :c2, :c2, :as1, :f2, :ds2).look + 0.5, wave: ripple1.look
sleep (ring, 0.75, 0.75, 0.75, 0.75, 1).look
end
end
ripple.tick
if one_in 2 then
ripple1.tick
sleep 1
end
end
end