If I have some values in 2 arrays like this
tbl1 = [23, 300, 420, 570, 700];
tbl2 = [60, 200, 620, 880, 1200];
I also have a knob that has the range 0 -1.
If I would like to send the values between tbl1[0] and tbl2[0] (23 -> 60) in the knobs callback, I would write:
sendValue = tbl1[0] + (tbl2[0] - tbl1[0]) * knob.getValue();
I will always go from tbl1 to tbl2, or vice versa, using the same index
How can I achieve this inside script node?
Where do I store the arrays, etc....








