유니티 AddComponent를 사용하여 오브젝트에 스크립트 붙이기

이미지
  1 2 3 4 5 6 7 8 9 10 11 12 13 14 public   class  MyExam : MonoBehaviour {      // Start is called before the first frame update      void  Start()     {          // GameObject ob = new GameObject("TestAddCom");           GameObject ob  =  GameObject.Find( "TestAddCom" );         TestAddCom addCom  =  ob.AddComponent < TestAddCom > ();     }       }   Colored by Color Scripter cs TestAddCom 오브젝트를 찾은 후  AddComponent를 사용하여 스크립트를 붙여준다.

구글 블로그 코드 넣는 방법

이미지
https://colorscripter.com/  에서 코드를 입력한 후 html 글쓰기로 복사 붙여넣기한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 public   class  MyExam : MonoBehaviour {      // Start is called before the first frame update      void  Start()     {          // GameObject ob = new GameObject("TestAddCom");           GameObject ob  =  GameObject.Find( "TestAddCom" );         TestAddCom addCom  =  ob.AddComponent < TestAddCom > ();     }       }   Colored by Color Scripter cs