Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UKismetMathLibrary
Description
Generates a 1D Perlin noise from the given value. Returns a continuous random value between -1.0 and 1.0.
| Name | PerlinNoise1D |
| 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|Random")
static float PerlinNoise1D
(
const float Value
)
Perlin noise in the range of -1.0 to 1.0
Parameters
| Name | Remarks |
|---|---|
| Value | The input value that Perlin noise will be generated from. This is usually a steadily incrementing time value. |