moving loop like scrub

2.40K viewsGeneral
0

hi, is there a way to move the loop like for the scrub instead of setting the loop start to a point in the timeline?

admin Changed status to publish
Attached Files:
0

You would need 2 Action blocks, 1 for when you turn the encoder left & another for when turned right.
In each action block, add a condition to check the velocity value of the encoder.
First Action block should check that the velocity is 1 (so turning left) and in action block 2, check for velocity 127.

In the action section for each…
select ‘live object model > song > set loop length
In the ‘Beats’ option, you want to add/minus a value to the current loop length.
This can be done like so (make sure to select ‘custom code’ for the beats option so you can enter code) :
self.song().loop_length + 4.0
self.song().loop_length – 4.0
The fist line of code above gets the current loop length and adds 1 bar to it (4.0) and the second does the same but minuses 1 bar,

admin Changed status to publish
You are viewing 1 out of 21 answers, click here to view all answers.