F K

Results 2 comments of F K

For request 1: This can be accomplished with accessors in your settings class. e.g.: ```lua class PluginSettings { [SettingDisplayName("Cool Setting")] public bool CoolSetting { get => _cool; set { SomethingINeedToDoWhenThisIsChanged();...

A more formal way to be notified of setting value changes would be to implement `INotifyPropertyChanged` and the interested parties can subscribe to the PropertyChanged event...