Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UKismetMathLibrary
Description
Returns Value normalized to the given range. (e.g. 20 normalized to the range 10->50 would result in 0.25)
| Name | NormalizeToRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetMathLibrary.h |
| Include Path | #include "Kismet/KismetMathLibrary.h" |
| Source | /Engine/Source/Runtime/Engine/Private/KismetMathLibrary.cpp |
UFUNCTION (BlueprintPure, Category="Math|Float")
static double NormalizeToRange
(
double Value,
double RangeMin,
double RangeMax
)