UMovementComponent::MoveUpdatedComponent

Moves our UpdatedComponent by the given Delta, and sets rotation to NewRotation.

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/GameFramework/MovementComponent.h

Include

#include "GameFramework/MovementComponent.h"

Syntax

bool MoveUpdatedComponent
(
    const FVector & Delta,
    const FRotator & NewRotation,
    bool bSweep,
    FHitResult * OutHit,
    ETeleportType Teleport
)

Remarks

Moves our UpdatedComponent by the given Delta, and sets rotation to NewRotation. Respects the plane constraint, if enabled.

This simply calls the virtual MoveUpdatedComponentImpl() which can be overridden to implement custom behavior.

The overload taking rotation as an FQuat is slightly faster than the version using FRotator (which will be converted to an FQuat).

The 'Teleport' flag is currently always treated as 'None' (not teleporting) when used in an active FScopedMovementUpdate.

Returns

True if some movement occurred, false if no movement occurred. Result of any impact will be stored in OutHit.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss