// Use this for initialization
    void Start()
    {
        //GameObject.DontDestroyOnLoad(this.gameObject);
        sesion = new DatosSesion();
        sesion.IniciaReestableceSesion();
        if (PlayerPrefs.GetString("sexoAlumno").Equals("true"))
        {
            alumno_sexo = true;
        }
        else
        {
            alumno_sexo = false;
        }
        fuenteAudio = GetComponent <AudioSource>();
        CambiarAudio(1);

        CambiarEstadoREIM(estadoREIM.vista1);
    }