Navigation
API > API/Plugins > API/Plugins/Mover > API/Plugins/Mover/UMoverComponent
Description
Queue a layered move to start during the next simulation frame. This will clone whatever move you pass in, so you'll need to fully set it up before queuing.
| Name | K2_QueueLayeredMove |
| Type | function |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/MoverComponent.h |
| Include Path | #include "MoverComponent.h" |
| Source | /Engine/Plugins/Experimental/Mover/Source/Mover/Private/MoverComponent.cpp |
UFUNCTION (BlueprintCallable, CustomThunk, Category=Mover,
Meta=(CustomStructureParam="MoveAsRawData", AllowAbstract="false", DisplayName="Queue Layered Move"))
void K2_QueueLayeredMove
(
const int32 & MoveAsRawData
)
Parameters
| Name | Remarks |
|---|---|
| LayeredMove | The move to queue, which must be a LayeredMoveBase sub-type. |