Files
integration/Source/Integration/LxCharacterBase.cpp

12 lines
323 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LxCharacterBase.h"
#include "GameFramework/CharacterMovementComponent.h"
void AlxCharacterBase::SetMovementComponentMode(EMovementMode MovementMode)
{
UCharacterMovementComponent *CMC = GetCharacterMovement();
if (CMC) CMC->SetMovementMode(MovementMode);
}