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