Skip to main content

Map Range

Overview

Remaps a value from one numerical range into another.


Inputs

NameTypeDescription
ValuefloatInput value to be remapped.
From MinfloatLower bound of the input range.
From MaxfloatUpper bound of the input range.
To MinfloatLower bound of the target range.
To MaxfloatUpper bound of the target range.

Outputs

NameTypeDescription
ResultList<float>The remapped value in the target range.

Parameters

This node does not expose additional parameters.


Behavior Notes

  • The node linearly maps Value from the range [From Min, From Max] into [To Min, To Max].
  • Values outside the input range are extrapolated accordingly.