Inheritance: EventDispatcher → Node →
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 ]. RemapNode takes care of that and converts the original value of 0.4 to 0.5.
Constructs a new remap node.
node
The node that should be remapped.
inLowNode
The source or current lower bound of the range.
inHighNode
The source or current upper bound of the range.
outLowNode
The target lower bound of the range.
Default is float(0).
outHighNode
The target upper bound of the range.
Default is float(1).
Whether the node value should be clamped before remapping it to the target range.
Default is true.
The source or current upper bound of the range.
The source or current lower bound of the range.
The node that should be remapped.
The target upper bound of the range.
Default is float(1).
The target lower bound of the range.
Default is float(0).