public ProjectEditorPreferenceDefinitionBase(string label, string preferenceKey, object defaultValue,
                                              HandleOnEditorPersistedValueChange handleOnEditorPersistedValueChange = null)
 {
     Label             = label;
     _rawPreferenceKey = preferenceKey;
     DefaultValue      = defaultValue;
     HandleOnEditorPersistedValueChange = handleOnEditorPersistedValueChange;
 }
Пример #2
0
 public TextProjectEditorPreferenceDefinition(string label, string preferenceKey, object defaultValue, HandleOnEditorPersistedValueChange handleOnEditorPersistedValueChange = null)
     : base(label, preferenceKey, defaultValue, handleOnEditorPersistedValueChange)
 {
 }