Navigation
API > API/Plugins > API/Plugins/WaveTable > API/Plugins/WaveTable/FWaveTableSampler
References
| Module | WaveTable |
| Header | /Engine/Plugins/Runtime/WaveTable/Source/WaveTable/Public/WaveTableSampler.h |
| Include | #include "WaveTableSampler.h" |
Syntax
enum EInterpolationMode
{
None,
Linear,
Cubic,
MaxValue,
COUNT,
}
Values
| Name | Description |
|---|---|
| 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 |
Remarks
Interpolation mode when sampling values between indices.