If you want to make use of the swing function, you could use this approach as a start,
I found it works really well with bools :
live_loop :swing do
with_swing 0.08 do
sample :drum_cymbal_soft if (bools 1, 0, 0, 0, 1, 0, 1, 0).tick
end
sleep 0.125
end
Now change the swing value to 0.12
and then back again to lets say 0.08
and listen to the change in swing feel.
Or a negative value approach :
live_loop :swing do
with_swing -0.02 do
sample :drum_cymbal_soft if (bools 1, 0, 0, 0, 1, 0, 0, 1).tick
end
sleep 0.125
end
Change the value of the swing to -0.08
and listen to the effect. Then change it back to -0.06
, etc.