Created
December 8, 2013 11:10
-
-
Save baba-s/7855993 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// PlayerPrefsを削除するクラス | |
/// </summary> | |
public class DeletePlayerPrefs : ScriptableObject | |
{ | |
/// <summary> | |
/// PlayerPrefsをすべて削除する | |
/// </summary> | |
[MenuItem("Tools/Delete Player Prefs")] | |
private static void Delete() | |
{ | |
PlayerPrefs.DeleteAll(); | |
Debug.Log("Delete all PlayerPrefs."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment