Hello hive mind, some live coding fundamentals please.
When I run the following code and make changes to it,
the sound doesn’t change until I stop and start it, I do remember
some other examples when pressing play again will.
In general what kinds of loops allow this?
Pentatonic Bleeps
live_loop :bleeps do
with_fx :reverb, mix: 0.8, room: 1.0 do
loop do
play scale(:Eb2, :major_pentatonic, num_octaves: 3).choose, release: 0.1, amp: rand
sleep 0.2
end
end
end