N E W

remap

Last modified: Mar 14, 2026

This node allows to remap a node value from one range into another. E.g a value of 0.4 in the range [ 0.3, 0.5 ] should be remapped into the normalized range [ 0, 1 ]. remap takes care of that and converts the original value of 0.4 to 0.5.

ParameterTypeDefault Value
nodeNode
inLowNodeNode
inHighNodeNode
outLowNode?Node
outHighNode?Node

Returns

Node
N E W

remapClamp

This node allows to remap a node value from one range into another but with enabled clamping. E.g a value of 0.4 in the range [ 0.3, 0.5 ] should be remapped into the normalized range [ 0, 1 ]. remapClamp takes care of that and converts the original value of 0.4 to 0.5.

ParameterTypeDefault Value
nodeNode
inLowNodeNode
inHighNodeNode
outLowNode?null | Nodefloat( 0 )
outHighNode?null | Nodefloat( 1 )

Returns

Node