Как это сделать i...assets/scripts/gamelogic/resume.js(45, 13): BCE0020: экземпляр типа 'unityengine.gameobject' необходим для доступа к нестатическому члену 'active'.
#pragma strict var resume : GUITexture; var resume_tex : Texture2D[]; var pauseMenu : GUITexture; var click : AudioClip; function Start () { } <pre>function Update () { //if (Input.touchCount>0) { // for (var touch : Touch in Input.touches) { // // // if (touch.phase == TouchPhase.Began){ // // if (play.HitTest(touch.position)) { // play.texture = play_tex[1]; // // Application.LoadLevel("QuickPlay"); // // // } // // // // } // if (touch.phase == TouchPhase.Ended){ // play.texture = play_tex[0]; // // } // // } // // // } } function OnMouseUp(){ resume.texture = resume_tex[0]; Time.timeScale = 1; pauseMenu.active = false; } function OnMouseDown(){ GetComponent.<audiosource>().PlayOneShot(click); resume.texture = resume_tex[1]; } What I have tried: I don't know how to solve this error