Panicking Ant wrote:when I try it nothing happens.
Try pasting into Notepad or any other text editor as an intermediate step to see that the values are. A default, linear, curve will look like this:
Velocity = [0, 127; 0, 127]
This defines just the starting and ending points; the first two values are the X-axis values (input values from left to right), and the second two, after the semicolon, are the corresponding Y-axis values (output values from bottom to top).
Here's a curve that has input values every 8 steps with corresponding ouput values to give a non-linear curve:
Velocity = [0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 127; 0, 10, 32, 46, 55, 61, 65, 69, 74, 80, 87, 94, 99, 102, 105, 111, 127]
You can copy this text and paste it into the Velocity Curve to see what it produces as an example.