Navigation
API > API/Plugins > API/Plugins/WaveTable > API/Plugins/WaveTable/FWaveTableSampler
Interpolation mode when sampling values between indices.
| Name | EInterpolationMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/WaveTable/Source/WaveTable/Public/WaveTableSampler.h |
| Include Path | #include "WaveTableSampler.h" |
Syntax
enum EInterpolationMode
{
None,
Linear,
Cubic,
MaxValue,
COUNT,
}
Values
| Name | Remarks |
|---|---|
| None | No interpolation (Stepped) |
| Linear | Linear interpolation. |
| Cubic | Cubic interpolation. |
| MaxValue | Takes the maximum value between two points (EXPENSIVE, but good for caching/drawn curves). |
| COUNT |