版本: Unity 6 (6000.0)
语言English
  • C#

EditorPrefs.DeleteAll

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个更改建议,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void DeleteAll();

描述

移除所有偏好设置的键和值。谨慎使用。


清除所有编辑器偏好设置键。

// Clear all the editor prefs keys.
//
// Warning: this will also remove editor preferences as the opened projects, etc.

using UnityEngine; using UnityEditor;

public class DeleteAllExample : ScriptableObject { [MenuItem("Examples/EditorPrefs/Clear all Editor Preferences")] static void deleteAllExample() { if (EditorUtility.DisplayDialog("Delete all editor preferences.", "Are you sure you want to delete all the editor preferences? " + "This action cannot be undone.", "Yes", "No")) { Debug.Log("yes"); EditorPrefs.DeleteAll(); } } }