Namespace UnityEditor.SettingsManagement
Classes
FileSettingsRepository
Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.To browse the .NET Framework source code for this type, see the Reference Source.
PackageSettingsRepository
Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.To browse the .NET Framework source code for this type, see the Reference Source.
ProjectUserSettings
Settings
Settings manages a collection of ISettings
SettingsGUILayout
Extension methods for GUILayout that also implement settings-specific functionality.
SettingsGUILayout.IndentedGroup
Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.To browse the .NET Framework source code for this type, see the Reference Source.
SettingsKeyAttribute
Register a field with Settings, but do not automatically create a property field in the SettingsProvider. Unlike UserSettingAttribute, this attribute is valid for instance properties as well as static. These values will not be shown in the SettingsProvider, but will have their stored values cleared when "Reset All" is invoked.
UserSettingAttribute
Register a static field of type IUserSetting with the UserSettingsProvider window.
UserSettingBlockAttribute
UserSettingBlock allows you add a section of settings to a category.
UserSetting<T>
A generic implementation of IUserSetting to be used with a Settings instance. This default
implementation assumes the Settings instance contains two ISettings
UserSettingsProvider
A Settings
UserSettingsRepository
A settings repository backed by the UnityEditor.EditorPrefs class.
Interfaces
ISettingsRepository
A settings repository is responsible for implementing the saving and loading of values.
IUserSetting
Types implementing IUserSetting are eligible for use with User