플러그인
[UE] Tool Bar 아이콘 만들기
[UE] Tool Bar 아이콘 만들기
2023.04.25목차 Plugins Example ButtonCommand.h .cppExample.Build.csExampleConsoleCommand.h .cpp ExampleDebuggerCategory.h .cppExampleModule.h .cppExampleStyle.h.cpp 생성StaticMesh_Detail.h .cppSource Utilities CHelper.hCLog.h .cpp Global.hCStaticMesh.h .cpp.Build.cs .uproject Tool Bar 아이콘 만들기 Plugin 아이콘 저장위치 Example.Build.cs Example.Build.cs더보기using UnrealBuildTool;public class Example : Modu..
[UE] Plugin, Slate UI
[UE] Plugin, Slate UI
2023.04.03언리얼 엔진에서 플러그인은 엔진의 기능을 확장하는 모듈식 구성요소이다. 사용자 정의 플러그인을 생성하여 새로운 기능을 추가하거나 기존 기능을 수정할 수 있으므로 개발자가 특정 요구 사항에 맞게 엔진을 조정할 수 있다. 커스텀 플러그인을 만들 때 모듈식 디자인의 모범 사례를 따르고 언리얼 엔진의 프로그래밍 규칙을 준수하는 것이 중요하다. 목차 Plugins Example Example.Build.csExampleModule.h .cppExampleDebuggerCategory.h .cpp 생성 Slate UI 언리얼 엔진에서 커스텀 플러그인을 만들기언리얼 에디터를 열고 "플러그인" 메뉴로 이동한다."새 플러그인"을 클릭하고 생성할 플러그인 유형을 선택한다.플러그인의 이름과 위치를 선택하..