Difference between revisions of "jumpIn'"
From TidalCycles userbase
(First text.) |
(Change "pattern swimlane" to "ControlPattern track".) |
||
Line 1: | Line 1: | ||
[[Category:Transitions]] | [[Category:Transitions]] | ||
− | <code>jumpIn'</code> takes the identifier of the | + | <code>jumpIn'</code> takes the identifier of the ControlPattern track and an integer ''cycleCount''. It will jump '''at cycle boundary''' into the given pattern after ''cycleCount'' cycles have completed. |
'''Example:''' Say you have this: | '''Example:''' Say you have this: | ||
Line 12: | Line 12: | ||
jumpIn' 1 2 $ sound "hh*8" --`1` because `d1` | jumpIn' 1 2 $ sound "hh*8" --`1` because `d1` | ||
</source> | </source> | ||
− | The transition will | + | The transition will align with the beat on cycle boundary. |
'''See also:''' [[jump]], [[jumpIn]], [[jumpMod]] | '''See also:''' [[jump]], [[jumpIn]], [[jumpMod]] |
Latest revision as of 18:56, 13 July 2019
jumpIn'
takes the identifier of the ControlPattern track and an integer cycleCount. It will jump at cycle boundary into the given pattern after cycleCount cycles have completed.
Example: Say you have this:
d1 $ sound "hh*4"
d2 $ sound "bd" --have a beat on the 1 for orientation
Then the subdivision on the hi-hat will increase 2 cycles after evaluation of the next line:
jumpIn' 1 2 $ sound "hh*8" --`1` because `d1`
The transition will align with the beat on cycle boundary.