Unity Attribute API
ExecuteInEditMode class in UnityEngine Description 스크립트가 에디터모드에서 동작하도록 설정합니다. 기본 설정으로, 스크립트 컴포넌트는 플레이 모드에서만 동작하도록 설정되어 있습니다. 이 어트리뷰트(attribute)를 추가 하면, 각 스크립트 컴포넌트들 역시 플레이모드가 아닌 에디터 모드에서 해당 콜백 함수를 수행할 수 있습니다. The functions are not called constantly like they are in play mode. - Update is only called when something in the scene changed. - OnGUI is called when the Game View recieves an Event. - 씬뷰..