Navigation
API > API/Plugins > API/Plugins/UAF
| Name | EAnimNextModuleInitMethod |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/Module/AnimNextModuleInitMethod.h |
| Include Path | #include "Module/AnimNextModuleInitMethod.h" |
Syntax
enum EAnimNextModuleInitMethod
{
None,
InitializeAndPause,
InitializeAndPauseInEditor,
InitializeAndRun,
}
Values
| Name | Remarks |
|---|---|
| None | Do not perform any initial update, set up data structures only. |
| InitializeAndPause | Set up data structures, perform an initial update and then pause. |
| InitializeAndPauseInEditor | Set up data structures, perform an initial update and then pause in editor only, otherwise act like InitializeAndRun. |
| InitializeAndRun | Set up data structures then continue updating. |