728x90
반응형
const FRotator AimRotation = PlayerCharacter->GetBaseAimRotation();
const FRotator MovementRotation = UKismetMathLibrary::MakeRotFromX(PlayerCharacter->GetVelocity());
MovementOffsetYaw = UKismetMathLibrary::NormalizedDeltaRotator(MovementRotation,AimRotation).Yaw;
if(PlayerCharacter>GetVelocity().Size() > 0.f)
{
LastMovementOffsetYaw = MovementOffsetYaw;
}
728x90
반응형
'언리얼 엔진 > C++' 카테고리의 다른 글
언리얼엔진 C++ BehaviorTree Tip (노드 설명 추가) (0) | 2022.07.04 |
---|---|
언리얼엔진 C++ 클래스에 사용자 지정 섹션 만들기 (0) | 2022.06.07 |
언리얼엔진 C++ Enum to String (0) | 2022.05.03 |
언리얼엔진 5 C++ Dedicated server Error: Assertion failed: Index != INDEX_NONE (0) | 2022.04.08 |
언리얼엔진 C++ On Notify Begin (0) | 2022.04.05 |