diff --git a/nodes/core/logic/16-range.html b/nodes/core/logic/16-range.html index aa6ae4683..6934db804 100644 --- a/nodes/core/logic/16-range.html +++ b/nodes/core/logic/16-range.html @@ -24,18 +24,18 @@
- From the range: + Map from the range:
-     min: -   max: +     from: +   to:
- to the range: + to the result range:
-     min: -   max: +     from: +   to:

@@ -53,6 +53,8 @@

A simple function node to remap numeric input values to another scale.

Currently only does a linear scaling.

Note: This only operates on numbers. Anything else will try to be made into a number and rejected if that fails.

+

Scale and limit to target range means that the result will never be outside the range specified within the result range.

+

Scale and wrap within the target range means that the result will essentially be a "modulo-style" wrap-around within the result range.