Exemplo n.º 1
0
    void OnDoubleClick()
    {
        //Debug.Log("Double Clicked");
        Global.is_file_chosen_for_uploading_after_downloading = true;
        categories_management cm = new categories_management();

        cm.download_to_file();
        Global.done_double_clicking = true;
    }
    // Start is called before the first frame update
    void Start()
    {
        //choose_year.GetComponent<Dropdown>().itemText.text = Global.year;

        PopulateList();
        chosen_year.text = "";
        Debug.Log(" faculty name = " + Global.faculty_name);

        if (Global.signedin == true)
        {
            faculty_name_label.text = "Welcome Prof. " + Global.faculty_name;
        }
        else
        {
            faculty_name_label.text = "Welcome , Please Sign IN!";
        }

        categories_management cat = new categories_management();

        cat.begin_script();
    }