Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using UnityEngine;
- using UnityEditor;
- using System.Collections;
-
- namespace SgLib
- {
- public class EditorTools
- {
- [MenuItem("Tools/Reset PlayerPrefs", false)]
- public static void ResetPlayerPref()
- {
- PlayerPrefs.DeleteAll();
- Debug.Log("*** PlayerPrefs was reset! ***");
- }
- }
-
-
- }
|