Navigation
API > API/Plugins > API/Plugins/Mover > API/Plugins/Mover/UMoverComponent
Description
Queue an Instant Movement Effect to start at the end of this frame or start of the next subtick - whichever happens first. This will clone whatever move you pass in, so you'll need to fully set it up before queuing.
| Name | K2_QueueInstantMovementEffect |
| 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="EffectAsRawData", AllowAbstract="false", DisplayName="Queue Instant Movement Effect"))
void K2_QueueInstantMovementEffect
(
const int32 & EffectAsRawData
)
Parameters
| Name | Remarks |
|---|---|
| InstantMovementEffect | The effect to queue, which must be a FInstantMovementEffect sub-type. |