Skip to content

Float Remap

Remaps a float value from one range to another. For example, remap 50 from [0,100] to [0,1] gives 0.5.

Parameter Description
Float The float to remap. This value is read, remapped, and written back.
From Min Minimum value of the input range.
From Max Maximum value of the input range.
To Min Minimum value of the output range.
To Max Maximum value of the output range.
Clamp If true, clamp the input to the [From Min, From Max] range before remapping.

See also