void Awake() { //ビルドした時解像度がなんか、変にされちゃってて ←多分どっかの値がさんこうにいされてんだけど、めんどいからこのスクリプトで強制的に起動時に上書きする Screen.SetResolution(1920, 1080, true, 60); m_Academy = FindObjectOfType <PushBlockAcademy>(); //cache the academy }
void Awake() { academy = FindObjectOfType <PushBlockAcademy>(); //cache the academy }
void Awake() { // There is one brain in the scene so this should find our brain. brain = FindObjectOfType <Brain>(); academy = FindObjectOfType <PushBlockAcademy>(); //cache the academy }