Unity Attribetes
Attributes Unity에서 제공하는 attribute들 AddComponentMenu기본적으로 스크립트는 유니티의 Component->Scripts 메뉴에 자동추가 된다. 자동추가말고 아무데나 맘대로 넣고 싶으면 AddComponentMenu를 사용한다. [AddComponentMenu("Transform/Follow Transform")] public class FollowTransform : MonoBehaviour { } ContextMenu, ContextMenuItem스크립트를 우클릭시 뜨는 context menu에 커맨드를 추가할 수 있다. Item은 오른쪽 버튼을 누르면 나타는 메뉴를 말한다. public class ContextTesting : MonoBehaviour { /// A..