a
(float, default: 0): The value to be clamped.b
(float, default: 0): The minimum value of the range.c
(float, default: 0): The maximum value of the range.result
(float): The clamped value.a
input. This is the value that will be clamped.b
input. This is the minimum value of the range.c
input. This is the maximum value of the range.result
output.a
input of the CLAMP node.b
input to 0 (the minimum value).c
input to 5 (the maximum value).result
output will now provide a value between 0 and 5, inclusive.b
) is less than or equal to the maximum value (c
). If b
is greater than c
, the node will always output the value of b
.