public class Spherr : MonoBehaviour { GameObject cube; // Use this for initialization void Start () { cube = GameObject.Find("Cube"); } // Update is called once per frame void Update () { Cube ref = cube.GetComponent<Cube>(); } } public class Cube : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update () { } void aaa() { } } こう書いたけどaaaがSpherr でやっぱ呼び出せない