Custom Properties operator interpolation
#2
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 Smile

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


Messages In This Thread
RE: Custom Properties operator interpolation - by tyFlow - 04-03-2019, 06:59 PM

Forum Jump: