Navigation
API > API/Editor > API/Editor/Sequencer
Allowable snapping modes when setting global time
| Name | ESnapTimeMode |
| Type | enum |
| Header File | /Engine/Source/Editor/Sequencer/Public/ISequencer.h |
| Include Path | #include "ISequencer.h" |
Syntax
enum ESnapTimeMode
{
STM_None = 0x00000000,
STM_Interval = 0x00000001,
STM_Keys = 0x00000002,
STM_All = STM_Interval | STM_Keys,
}
Values
| Name | Remarks |
|---|---|
| STM_None | No snapping |
| STM_Interval | Snap to the time interval. |
| STM_Keys | Snap to keys. |
| STM_All | All snapping |