관리 메뉴

caLAB

[언리얼 엔진] 도큐먼트 참고 본문

언리얼 엔진/언리얼 엔진 블루프린트

[언리얼 엔진] 도큐먼트 참고

도이(doi) 2021. 10. 12. 17:08
728x90

https://docs.unrealengine.com/4.27/ko/ProgrammingAndScripting/Blueprints/UserGuide/FlowControl/

 

흐름 제어

조건에 따라 실행 흐름을 제어할 수 있는 노드입니다.

docs.unrealengine.com

아티스트 최적화

https://docs.unrealengine.com/4.27/ko/TestingAndOptimization/PerformanceAndProfiling/Guidelines/

 

아티스트와 디자이너를 위한 퍼포먼스 지침

콘텐츠와 레벨 디자인 최적화를 위한 일반적인 팁과 정보입니다.

docs.unrealengine.com

https://docs.unrealengine.com/4.27/ko/TestingAndOptimization/PerformanceAndProfiling/ReducingPackageSize/

 

게임 패키지 크기 줄이기

게임 패키지 크기를 줄이는 방법입니다.

docs.unrealengine.com

https://docs.unrealengine.com/4.27/ko/Basics/Projects/Packaging/

 

프로젝트 패키징

언리얼 게임 프로젝트의 배포용 패키지 만들기입니다.

docs.unrealengine.com

최종 출하 빌드의 경우, 디버깅 정보와 (화면상에 디버그 메시지를 출력하거나 디버그 셰이프를 그리는 등의) 디버깅 특화 기능이 제거된 Shipping 을 선택합니다.

https://docs.unrealengine.com/4.27/ko/TestingAndOptimization/PerformanceAndProfiling/UnrealInsights/Overview/

 

언리얼 인사이트 개요

언리얼 인사이트 애플리케이션 프로파일링 툴 개요

docs.unrealengine.com

https://docs.unrealengine.com/4.27/ko/TestingAndOptimization/PerformanceAndProfiling/Overview/

 

퍼포먼스 및 프로파일링 개요

퍼포먼스 관련 문제를 알아내고 고치는 방법입니다.

docs.unrealengine.com

stat unit  stat fps 같은 통계 명령으로 시작 수치를 구할 수 있습니다. 정확한 프로파일링을 위해서는 밀리초 (ms) 단위가 적당하며, 초당 프레임(fps)은 적당하지 않습니다. 수치간의 변환은 쉽게 가능하나, fps 로 측정했을 때의 상대적 향상은 의미가 적습니다. 특정 개별 기능에 대해 이야기할 때는, 프레임을 측정하지 않으므로 밀리초에 대해 이야기합니다.

30 fps (~33.3ms) 또는 60 fps (~16.6ms) 에 제한이 걸린 경우, 아마도 VSync 가 켜진 상태일 것입니다. 보다 정확한 타이밍 정보를 위해서는, 끄고 프로파일링하는 것이 좋습니다.

https://docs.unrealengine.com/4.27/en-US/TestingAndOptimization/PerformanceAndProfiling/StatCommands/

 

Stat Commands

Console commands specific to displaying game statistics.

docs.unrealengine.com

https://docs.unrealengine.com/4.27/ko/TestingAndOptimization/PerformanceAndProfiling/SmoothFrameRate/

 

Smooth Frame Rate

Overview of the Smooth Frame Rate option inside the Engine Settings.

docs.unrealengine.com

VSync essentially is a way to control screen tearing (when the Frame Rate exceeds the Refresh Rate of the monitor) or stutter (when the Frame Rate drops below the Frame Rate Cap, typically 60 FPS) in your rendered application. The functionally works by setting an overall Frame Rate based on the video card demands and the Monitor refresh rate; this will yield a very harsh jump sometimes between 30 FPS and 60 FPS on modern machines which yield the stuttering effect.

728x90
반응형
Comments