|
When you right-click a sequence, the sequence menu pops up, offering you various options to change that sequence, like for example "Transpose".
All these functions will operate on the selected events, or if none are selected then on all events in the sequence.
All the "Modify ..." functions work in a very similar way:
You can select one of 5 operators:
- + Add
- % Percent
- = Set
- * Random
- [] Limit
Suppose we're changing a velocity value, which is currently 70.
Add
Adds a value to the target value.
For example, if factor is 10, then the result = 80.
For example, if factor is -25, then the result = 45.
Percent
For example: Factor = 150%, Reference 0 => Result = 0 + ((70-0)*150%) = 105
For example: Factor = 150%, Reference 40 => Result = 40 + ((70-40)*150%) = 105
The reference is an important parameter as it defines from where on you want to apply the percentage.
For velocities this may be 0 most of the time, but the reference is definitely an important parameter when changing event times.
Set
Just sets the target value to this value.
Random
Random means modifying the existing value by randomly adding or subtracting a random value between 0 and the factor.
Limit
Limit means that the target value will be limited / clipped within the indicated range.
For example: Suppose range is [80-100], then velocity 70 will be clipped to 80, velocity 85 will stay at 85, and velocity 125 will be clipped to 100.
|