Page 1 of 1

Setting Noesis Default Settings

Posted: 16 Sep 2021, 20:20
by stonstad
In the Noesis About screen (Unity), there is a setting for default font and default resource dictionary. Is there a way to set these two values programmatically so that they are not lost on version upgrades?

Re: Setting Noesis Default Settings

Posted: 17 Sep 2021, 11:11
by jsantos
You can manually invoke:
  • Noesis.GUI.SetFontFallbacks
  • Noesis.GUI.SetFontDefaultProperties
  • Noesis.GUI.SetApplicationResources
Although I don't recommend doing that on Unity. We needed to break compatibility in 3.1 but that's something we don't expect to happen again. And if it happens we will try to be backward compatible.

Re: Setting Noesis Default Settings

Posted: 17 Sep 2021, 15:36
by stonstad
Thank you!