驱蚊app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

25 行
561 B

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEditor;
  4. using UnityEngine;
  5. public class PlayerPrefsEditor : EditorWindow
  6. {
  7. [MenuItem("Tools/PlayerPrefsDeleteAll")]
  8. public static void DeleteAll()
  9. {
  10. PlayerPrefs.DeleteAll();
  11. PlayerPrefs.Save();
  12. }
  13. [MenuItem("Tools/游戏截屏")]
  14. public static void GameScreenCapture()
  15. {
  16. ScreenCapture.CaptureScreenshot(Application.streamingAssetsPath + "/SomeLevel.png");
  17. AssetDatabase.Refresh();
  18. Debug.Log("截屏完成");
  19. }
  20. }