http://unity3d.com/support/documentation/ScriptReference/index.Accessing_Other_Game_Objects.html UnityはGameObjectへのアクセス方法がたくさんある。Unity初心者のこのアクセス方法の多様さに少し戸惑うと思う。 GameObjectにアクセスするいくつかの方法を示す。 シーンに付加された「OtherScript.js」にアクセスする var otherScript: OtherScript = GetComponent(OtherScript); otherScript.DoSomething(); スクリプト名とクラス名は同じ名前で対応している。