[Unity] GameObject.Find

2023. 8. 16. 17:58Unity

728x90
반응형

GameObject.Find

public class Test : MonoBehaviour
{
    GameObject other;
    void Start()
    {
        other = GameObject.Find("Obj2");
        other.GetComponent<MeshRenderer>().material.color = Color.red;
    }
}

Hierarchy에서 "Obj2"라는 이름의 오브젝트를 찾은 후 색을 바꿀 수 있다.

 

 

public class Test : MonoBehaviour
{
    public GameObject other;
    void Start()
    {
        other.GetComponent<MeshRenderer>().material.color = Color.red;
    }
}

public GameObject other; 을 이용하면 오브젝트를 직접 끌어다 놓아서 색을 변경할 수 있다.

728x90
반응형