Answers for "unity desktop path"

0

unity desktop path

string startingPath = default;
#if UNITY_EDITOR
            startingPath = Application.dataPath + "/Resources/";
#else
            startingPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Desktop);
#endif
Posted by: Guest on September-29-2020

Browse Popular Code Answers by Language