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 ESingleSampleMode
&123;
Zero = 0,
Unit = 1,
Hold,
Loop,
&125;
Values
| Name | Description |
|---|---|
| Zero | Interpolates last value to zero (0.0f) in table if sampled index is beyond last position. |
| Unit | Interpolates last value to unit (1.0f) in table if sampled index is beyond last position. |
| Hold | Holds last value in table if index is beyond last position. |
| Loop | Interpolates last value and first value in table if sampled index is beyond last position. |
Remarks
Mode of interpolation between last value in table and subsequent input index when sampling single values.