게임 개발/Unreal Engine
[UE4] 에디터 뷰포트 카메라 얻기(Editor Viewport Camera)
지노윈
2022. 6. 11. 13:28
반응형
언리얼 에디터 뷰포트 카메라를 얻는 방법입니다.
if(const auto Client = (FLevelEditorViewportClient*)GEditor->GetActiveViewport()->GetClient())
{
Client->GetViewLocation();
}
반응형