|
in_thread do
loop do
cue :tick
sleep 0.5
end
end
loop do
sync :tick
sample :drum_heavy_kick
end
|
# Start a metronome thread
# Loop forever:
# sending tick heartbeat messages
# and sleeping for 0.5 beats between ticks
# We can now play sounds using the metronome.
# In the main thread, just loop
# waiting for :tick sync messages
# after which play the drum kick sample
|
|
in_thread do
loop do
cue [:foo, :bar, :baz].choose
sleep 0.5
end
end
in_thread do
loop do
sync :foo
sample :elec_beep
end
end
in_thread do
loop do
sync :bar
sample :elec_flip
end
end
in_thread do
loop do
sync :baz
sample :elec_blup
end
end
|
# Start a metronome thread
# Loop forever:
# sending one of three tick heartbeat messages randomly
# and sleeping for 0.5 beats between ticks
# We can now play sounds using the metronome:
# In the main thread, just loop
# waiting for :foo sync messages
# after which play the elec beep sample
# In the main thread, just loop
# waiting for :bar sync messages
# after which play the elec flip sample
# In the main thread, just loop
# waiting for :baz sync messages
# after which play the elec blup sample
|