a
(float, default: 0): The first value to interpolate between.b
(float, default: 0): The second value to interpolate between.c
(float, default: 0): The mix factor that determines the interpolation amount. A value of 0 returns a
, a value of 1 returns b
, and values in between return a linear blend of a
and b
.result
(float): The interpolated value between a
and b
based on the mix factor c
.a
input.b
input.c
input to control the interpolation amount.result
output.input1
and input2
are two sliders that provide the values to interpolate between.mixFactor
is a slider that controls the interpolation amount.input1
and input2
based on mixFactor
.c
input is always between 0 and 1. Values outside this range will be clamped.c
input is between 0 and 1.