Unreal C++ Draw Debug : 오브젝트 그리기
[Unreal/C++] Draw Debug : 오브젝트 그리기Box, Sphere, Point, Circle, Line, Arrow를 그려본다. DrawDebugSolidBox(GetWorld(), Location[0] + Box.GetCenter(), Box.GetExtent(), FColor::Red);Solid Box : 월드, 중심 위치, 넓이, 색상을 추가한다.DrawDebugSphere(GetWorld(), Location[2], 100, 20, FColor::Blue); Sphere : 월드, 중심 위치, 반지름, 분할정도, 색상을 추가한다.DrawDebugPoint(GetWorld(), Location[1], 100, FColor::Red); Point : 월드, 중심 위치, 크기, 색상..
2023. 11. 2.