목차

오브젝트 선택 or 컴포넌트 선택

웹 레퍼런스

다른 게임 오브젝트의 컴포넌트나 스크립트 사용

public class example : MonoBehaviour {
  void Example() {
    transform.Translate(0, 1, 0);
    GetComponent<Transform>().Translate(0, 1, 0);
  }
}
 
public class example : MonoBehaviour {
  void Update() {
    <OtherScriptName> otherScript = GetComponent<OtherScriptName>();
    otherScript.DoSomething();
  }
}

게임 오브젝트 찾기

public class example : MonoBehaviour {
  void Start() {
    GameObject go = GameObject.Find("SomeGuy");
    go.GetComponent<OtherScript>().DoSomething();
    GameObject player = GameObject.FindWithTag("Player");
    player.GetComponent<OtherScript>().DoSomething();
  }
}