Ejemplo n.º 1
0
 public void OpenScreenshotsFolder()
 {
     if (OpenInFileBrowser.IsInMacOS)
     {
         OpenInFileBrowser.OpenInMac(Application.dataPath + "/screenshots/");
     }
     else if (OpenInFileBrowser.IsInWinOS)
     {
         OpenInFileBrowser.OpenInWin(Application.dataPath + "/screenshots/");
     }
     else
     {
         //linux is not supported. Rip
         StartCoroutine(RenderError("Unable to perform operation on this operating system. Sorry"));
     }
 }