コード例 #1
0
ファイル: VSSHARE.cs プロジェクト: HaniDA/save-life-android
        public void TakeScreenshot()
        {
            string path = "";

                        #if UNITY_EDITOR
            path = Application.dataPath;
                        #else
            path = Application.persistentDataPath;
                        #endif


            string screenShotPath = path + "/" + ScreenshotName;
            if (File.Exists(screenShotPath))
            {
                Debug.Log("old screenshot deetcted ==> deleting...");
                File.Delete(screenShotPath);
            }

                        #if UNITY_EDITOR
            AssetDatabase.Refresh();
                        #endif


            self.StartCoroutine(self.getScreenshot());
        }
コード例 #2
0
ファイル: VSSHARE.cs プロジェクト: blockspacer/Snake-Arena
 public void TakeScreenshot()
 {
     self.StartCoroutine(self.getScreenshot());
 }