[수정위치]
p203-p204
[오류내용]
4.24 버전에서 SpringArm->RelativeRotation 에러
[수정사항]
(1) 변경 전 :
SpringArm->RelativeRotation = FMath::RInterpTo(SpringArm->RelativeRotation, ArmRotationTo, DeltaTime, ArmRotationSpeed);
(1) 변경 후 :
FRotator TmpRo = FMath::RInterpTo(SpringArm->GetRelativeRotation(), ArmRotationTo, DeltaTime, ArmRotationSpeed);
SpringArm->SetRelativeRotation(TmpRo);
(2) 변경 전 :
GetController()->SetControlRotation(SpringArm->RelativeRotation);
(2) 변경 후 :
GetController()->SetControlRotation(SpringArm->GetRelativeRotation());
※ 수정사항은 개인적인 의견입니다. <(^ㅡ^);;;
반응형
'UE' 카테고리의 다른 글
[작업005] Combat System with ALSv4 Tutorial #10 (0) | 2020.08.20 |
---|---|
[작업004] Combat System with ALSv4 Tutorial #8~#9 (0) | 2020.08.19 |
[작업003] Combat System with ALSv4 Tutorial #1~#7 (0) | 2020.08.17 |
[작업002] 발도/납도/발도공격 및 적 인공지능 (0) | 2020.08.14 |
[작업001] Advanaced Locomotion System4에 Character Asset 적용! (0) | 2020.08.14 |