언리얼엔진 5 C++ Camera Shake 사용법 1. Build.cs 추가 Build.cs 에 "GameplayCameras" 를 추가한다. 2. ULegacyCameraShake 사용 UE4 에서 사용중이던 MatineeCameraShake 가 ULegacyCameraShake 로 변경 그에 따라 클래스만 다르게 기존 CameraShake 를 이용하던 방식대로 해주면 된다. https://docs.unrealengine.com/5.3/en-US/API/Plugins/GameplayCameras/ULegacyCameraShake/ 3. 예제 코드 if(APlayerController* PC = UGameplayStatics::GetPlayerController(GetWorld(),0)) { if(Fi..
프로젝트를 삼인칭으로 만들어서 패키징을 할 경우 발생하는 에러입니다. 이럴 경우에는 에디터안에서 모든폴더와 파일을 지우고 피처 또는 콘텐츠팩에서 삼인칭을 다시 추가하고 패키징하면 정상적으로 실행됩니다. UE5 Dedicated server Error: Assertion failed: Index != INDEX_NONE I found a solution to this problem. This is an error that occurs if you make a project third person and package it. In this case, erase all folders and files in the editor, add and package the third person in the featur..
https://forums.unrealengine.com/t/can-i-use-the-c-enum-in-ai-bt-blackboard/339672 Can I use the C++ Enum in AI BT Blackboard? I have an ENUM definded in C++'s code and it’s usable in Blueprints UENUM(BlueprintType) enum class NPCState : uint8{ Patrolling UMETA(DisplayName = "Patrolling"), Alerted UMETA(DisplayName = "Alerted"), }; I am able to use it in blueprints with no probl forums.unrealengi..