その先にあるもの…

컴파일 우선 순위 본문

프로그래밍/Unity

컴파일 우선 순위

specialJ 2014. 7. 23. 17:49
유니티 특수 폴더, 컴파일 순서

1. Standard Assets, Pro Standard Assets, Plugins 폴더 내의 런타임 스크립트
2. Standard Assets/Editor, Pro Standard Assets/Editor, Plugins/Editor 폴더 내의 에디터 스크립트
  • Plugins 폴더의 cs 파일 : Assembly-CSharp-firstpass 로 들어감
  • Plugins 폴더의 js 파일 : Assembly-UnityScript-firstpass 로 들어감
3. Editor 폴더 이외의 모든 스크립트
4. Editor 폴더 내부의 모든 스크립트
  • 기타 cs 파일 : Assembly-CSharp 로 들어감
  • 기타 js 파일 : Assembly-UnityScript 로 들어감


Comments