
EditorWindow를 이용하여 에디터에서 윈도우 탐색기 폴더 열기
·
코드 및 공부/데이터 관리
유니티 버전 - 6000.0.37f1 목차EditorWindowEditorUtility.RevealInFinder() EditorWindow개발 도중 저장되는 파일을 직접 확인/삭제 등, 직접 접근하여 수정해야할 일이 생겼을때 매번 %appdata% 를 통하여 찾아 들어가거나 폴더를 항상 켜놓지 않고도 EditorWindow를 이용하여 특정 폴더를 열 수 있습니다 먼저 EditorWindow를 스크립트를 작성합니다public class DevelopHelper : EditorWindow{ private GUIStyle _labelStyle; [MenuItem("Window/Customizing/DevelopHelper")] public static void..