Difference between revisions of "jump"
From TidalCycles userbase
(Created page with "Category:Transitions") |
(First text.) |
||
Line 1: | Line 1: | ||
[[Category:Transitions]] | [[Category:Transitions]] | ||
+ | |||
+ | <code>jump</code> is essentially the ''no transition''-transition. It jumps directly into the given pattern. The variants [[jumpIn]] and [[jumpMod]] provide more useful capabilities. | ||
+ | |||
+ | Say you have | ||
+ | <source> | ||
+ | d1 $ sound "hh*4" | ||
+ | </source> | ||
+ | then both of the following lines have the same effect when evaluated: | ||
+ | <source> | ||
+ | d1 $ sound "hh*8" | ||
+ | jump 1 $ sound "hh*8" | ||
+ | </source> |