에러가 발생한 상황
UENUM(BlueprintType)
enum class ERotationMode : uint8
{
RotationMode_VelocityDirection UMETA(DisplayName = "VelocityDirection"),
RotationMode_LookingDirection UMETA(DisplayName = "LookingDirection")
};
<Enum_PRRotationMode.h>
// 전방 선언
enum class ERotationMode : uint8;
UCLASS()
class PROJECTREPLICA_API APRPlayerCharacter : public APRCharacterBase
{
GENERATED_BODY()
public:
APRPlayerCharacter();
public:
// 에러가 발생하는 함수
UFUNCTION(BlueprintCallable, Category = "CharacterMovement")
void SetRotationMode(ERotationMode NewRotationMode);
}
<PRPlayerCharacter.h>
#include "Enums/Enum_PRRotationMode.h"
APRPlayerCharacter::APRPlayerCharacter()
{
}
<PRPlayerCharacter.cpp>
UENUM을 사용한 enum을 전방 선언으로 선언하고 이 enum을 사용하는 함수를 구현했습니다.
발생한 에러
해결 방법
void SetRotationMode(ERotationMode NewRotationMode);
UFUNCTION을 사용하지 않고 함수를 구현합니다. UPROPERTY에서도 이와 같은 에러가 생긴다면 마찬가지로 UPROPERTY를 사용하지 않고 구현합니다.
'Unreal Engine > Error' 카테고리의 다른 글
[Unreal Engine 4 Error] 프로퍼티가 BindWidgetAnim을 사용하지만, 임시가 아닙니다! (0) | 2021.10.07 |
---|