본문 바로가기
개발/Unity

Unity) Custom Project Setting (SettingProvider)

by 테샤르 2022. 11. 29.

 Custom Project Setting (SettingProvider)

SettingProvider를 사용하면 Project Setting의 메뉴를 추가할수있다.

빌드 및 프로젝트의 필요한 설정을 굳이 Editor Window를 만들어서 사용하지 않아도 된다.

Project 관련된 설정을 Custom 해서 추가해보자.

 

 

 

반응형

 

SettingServices 를 통해서 해당 메뉴를 열수도 있다.

    [MenuItem("SHC_Menu/Select Custom Hierarchy")]
    private static void ShowProjectSetting()
    {
        SettingsService.OpenProjectSettings("Project/CusthomHierarchy form SHC");
    }

 

Unity SettingProvider : [링크]

 

Unity - Scripting API: SettingsProvider

In order to add new Project settings or preference pages, define a SettingsProvider. The SettingsProvider class provides the hooks to display any UI (using either IMGUI or UIElements to draw it). It also provides an API that allows you to specify keywords

docs.unity3d.com

 

 

★☆☆☆☆

 

반응형

댓글