15 lines
278 B
C#
15 lines
278 B
C#
using UnityEngine;
|
|
using UnityEditor;
|
|
using System.Collections;
|
|
|
|
public class ClearPrefs : MonoBehaviour
|
|
{
|
|
|
|
[MenuItem("ProTool/ClearPref")]
|
|
public static void ClearPlayerPrefs()
|
|
{
|
|
PlayerPrefs.DeleteAll();
|
|
UserConfigData.ClearConfigData();
|
|
}
|
|
}
|