N E W
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.
| Parameter | Type | Default Value |
|---|---|---|
| node | Node | — |
| inLowNode | Node | — |
| inHighNode | Node | — |
| outLowNode? | Node | — |
| outHighNode? | Node | — |
Returns
NodeN E W
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.
| Parameter | Type | Default Value |
|---|---|---|
| node | Node | — |
| inLowNode | Node | — |
| inHighNode | Node | — |
| outLowNode? | null | Node | float( 0 ) |
| outHighNode? | null | Node | float( 1 ) |
Returns
Node