1) Yes for both. The format for each skin file could do wih a revamp into json or something and you can quickly recolor each skin using Gui.SetColor(r,g,b). The demo on itch.io does both. Also the module comes with 2 themes.Sadly I never looked into your module. So please excuse my questions:
- Is it skinnable? If yes, with graphics and/oder colors?
- I noticed a tabbed interface in your font editor. It that the main way to build an UI with your module, that you need a tabbed widget as a base?
Method AddCheckbox:GuiCheckbox(x:int,y:Int,w:Int,h:Int,[B]selected[/B]:Bool)
In the version i downloaded it doesn't fall back but crashesRegarding the neon theme, I dont think ive populated all the gfx and it falls back on the previouly loaded theme if files cannot be loaded.
which target? Ive tested on html5 and glfw and it wors fineIn the version i downloaded it doesn't fall back but crashes
Error - Unable to load image frames: neon-theme/../gui_default_slider.png
Error - Unable to load image: neon-theme/../gui_default_slider_back.png
slider image not available
slier back image not available
Cerberus Runtime Error : Error loading theme. Check log
C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules_ext/gui/m2.cxs<173>
C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules_ext/examples/gui_m2.cxs<144>
C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules/mojo/app.cxs<113>
Interesting. I'll checkDownloaded it again, and it works, in Release mode. In Debug mode it crashes on HTML5
Code:Error - Unable to load image frames: neon-theme/../gui_default_slider.png Error - Unable to load image: neon-theme/../gui_default_slider_back.png slider image not available slier back image not available Cerberus Runtime Error : Error loading theme. Check log C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules_ext/gui/m2.cxs<173> C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules_ext/examples/gui_m2.cxs<144> C:/Users/MikeHart/Desktop/CerberusX/Cerberus/modules/mojo/app.cxs<113>
#If CONFIG="debug"
If CheckTheme() = False Then Error("Error loading theme. Check log")
#End
Local menu:GuiOption = tab.AddOptions(100,100,200,20)
menu.SetOptions(["Option 1","Option 2","Option 3","Option 4"])