Navigation
API > API/Plugins > API/Plugins/Mover
| Name | EMoveMixMode |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/MoveLibrary/MovementUtilsTypes.h |
| Include Path | #include "MoveLibrary/MovementUtilsTypes.h" |
Syntax
enum EMoveMixMode
{
AdditiveVelocity = 0,
OverrideVelocity = 1,
OverrideAll = 2,
OverrideAllExceptVerticalVelocity = 3,
}
Values
| Name | Remarks |
|---|---|
| AdditiveVelocity | Velocity (linear and angular) is intended to be added with other sources |
| OverrideVelocity | Velocity (linear and angular) should override others |
| OverrideAll | All move parameters should override others |
| OverrideAllExceptVerticalVelocity | All move parameters should override others except linear velocity along the up/down axis. |