04-03-2019, 06:59 PM
Interpolation is purely a simple linear interpolation (lerp). The equation is:
newValue = value1 * interpolation + value2 * (1 - interpolation);
In the case of the custom properties operator, value1 would be the target value and value2 would be the old value.
For more complex interpolations, you'll need to use a script operator and code it yourself for now
Curves and fancier things will hopefully become supported in the future.
newValue = value1 * interpolation + value2 * (1 - interpolation);
In the case of the custom properties operator, value1 would be the target value and value2 would be the old value.
For more complex interpolations, you'll need to use a script operator and code it yourself for now

Curves and fancier things will hopefully become supported in the future.