brandonm4

Results 5 comments of brandonm4

Also you can look here at how I isolate the ModLib settings and references from the rest of my module. I don't include modlib.dll in my mod, and if it's...

I have also had this request.

Could you do something as simple as this: SettingPropertyAttribute.cs public SettingPropertyAttribute(string displayName, float minValue, float maxValue, float editableMinValue, float editableMaxValue, string hintText = "") { DisplayName = new TextObject(displayName).ToString(); MinValue...

https://github.com/brandonm4/BannerlordMods/blob/master/TournamentsXPanded.Settings.ModLib/TournamentXPSettingsModLib.cs

If not forcing a restart - can you add an event I can subscribe to when settings change? I pull once from ModLib on start and then store my settings...