BindAction<TBaseDelegate<void, EDirection>>("TargetSwitchLeft", IE_Pressed, CameraLockArm, &UTLSpringArmComponent::LockToSwitchTarget, EDirection::Left);
위와 같이 수정합니다.
4.26 버전부터 다음과 같이 작성하면 됩니다.
BindAction<TDelegate<void(EDirection)>>("TargetSwitchLeft", IE_Pressed, CameraLockArm, &UTLSpringArmComponent::LockToSwitchTarget, EDirection::Left);
'Unreal Engine > C++' 카테고리의 다른 글
[Unreal Engine 4 C++] Delegate (0) | 2021.04.29 |
---|---|
[Unreal Engine 4 C++] C++로 Timeline 구현하기 (2) | 2021.04.26 |
[Unreal Engine 4 C++] 클래스 레퍼런스를 인자로 받기 (0) | 2021.04.13 |
[Unreal Engine4 C++] 클래스의 헤더파일을 전방 선언할 수 있는 조건 (0) | 2021.04.12 |
[Unreal Engine4 C++] Delay 구현 (0) | 2021.04.06 |