Navigation
API > API/Plugins > API/Plugins/Mover
List of Mover tick phases where different parts of work are being performed
| Name | EMoverTickPhase |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/MoverTypes.h |
| Include Path | #include "MoverTypes.h" |
Syntax
enum EMoverTickPhase
{
Invalid = 0,
ProduceInput = 1,
SimulateMovement = 2,
ApplyState = 3,
}
Values
| Name | Remarks |
|---|---|
| Invalid | |
| ProduceInput | This tick is where an input for the next movement step is authored |
| SimulateMovement | This tick is where movement based on {input, state} is simulated, to produce a new state |
| ApplyState | This tick is where the newest simulation state is applied to the actor and its components |