카테고리 없음

Unity잡설_접근방법

zelkova 2020. 10. 18. 11:42

<목차로 돌아가기>

 

- 오브젝트 접근방법
	GameObject.Find("GameController").GetComponent<GameController>();
	GameObject.findGameObjectWithTag
    GameObject.transform.parent.gameobject
	GameObject.transform.GetComponentInParent

- 프리팹 접근방법
	Asset 안에 /Resources폴더 만들고 Prefabs을 넣은후 사용
	GameObject startingGun = Resources.Load<GameObject>("Gun");

- pubilc으로 인스펙터에서 접근
	public GameObject object

 

 

반응형