
The Remap node
When to use it
Rescales a value from one range to another, linearly.
Most noise comes out around -1 to 1 and most things that consume it expect 0 to 1. Forgetting that is the single most common reason a pattern looks half missing: the negative half is being read as zero.
It does not clamp. Feed it something outside Input Min to Input Max and the output runs straight past Output Min and Output Max. Inverse Lerp is the clamped version, or put a Clamp after this one.
Pins
| Pin | Type | Description |
|---|---|---|
InputMin |
Number | The input value that should come out as Output Min. |
InputMax |
Number | The input value that should come out as Output Max. |
OutputMin |
Number | What you get when the input sits at Input Min. |
OutputMax |
Number | What you get when the input sits at Input Max. |
Input |
Number | The number to work on. |
| Pin | Type | Description |
|---|---|---|
Result |
Number | The answer. |
Available in Mesh Morpher Graph and Mesh Morpher Studio.