Posts 유니티 에디터 - 빌드 직전에 동작하는 기능 작성하기
Post
Cancel

유니티 에디터 - 빌드 직전에 동작하는 기능 작성하기

Memo


  • 아래의 형태로 스크립트를 작성해놓으면 빌드 직전에 동작한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
#if UNITY_EDITOR

class BuildPreProcessor : UnityEditor.Build.IPreprocessBuildWithReport
{
    public int callbackOrder => 0;

    public void OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport report)
    {
        // Do Something Here
    }
}

#endif


References


This post is licensed under CC BY 4.0 by the author.