What do you think of the strange behaviour ? Spi 3.3.1 on windows 10.
live_loop :issuePatternTimed do
use_synth :piano
# this works
play_pattern_timed [:c, :g, :c5, :g5], [1, 2]
sample :drum_cymbal_hard
sleep 2
# this doesn't
# example4 in the doc claims it should plays as far as there are some durations right ?
use_synth :sine
play_pattern_timed [60, 65], [0.125, 0.125, 0.5, 0.5, 1, 1, 1.5, 1.5]
sample :drum_cymbal_hard
sleep 2
# the idea was to use a variable
use_synth :saw
n = (scale :c4, :ritusen).tick
puts n
play_pattern_timed [n], [0.25, 2, 0.25, 0.75]
sample :drum_cymbal_hard
sleep 2
end