Navigation
API > API/Plugins > API/Plugins/Mover
Used to identify how to interpret a movement input vector's values.
| Name | EMoveInputType |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/MoverDataModelTypes.h |
| Include Path | #include "MoverDataModelTypes.h" |
Syntax
enum EMoveInputType
{
Invalid,
DirectionalIntent,
Velocity,
None,
}
Values
| Name | Remarks |
|---|---|
| Invalid | |
| DirectionalIntent | Move with intent, as a per-axis magnitude [-1,1] (E.g., "move straight forward as fast as possible" would be (1, 0, 0) and "move straight left at half speed" would be (0, -0.5, 0) regardless of frame time). |
| Velocity | Move with a given velocity (units per second) |
| None | No move input of any type |