Quetzy
Quetzy
Currently templates largely exist as raw struct resources that get applied to a template element as it gets instantiated in yui_create_template_element. Some of the raw data gets modified on the...
Currently all imports get flattened into one master resources table per document. This means all resource names must be unique or there might be conflicts, and that resources used just...
Currently YUI uses depth to control draw order and make sure the right elements draw on top of each other. But this makes it hard to implement features like shader...
This will work correctly: `@ == $selected_item then $selected_bg_color else $item_bg_color` This will not: `$selected_item == @ then $selected_bg_color else $item_bg_color` In the latter case the scanner seems to be...
Currently you can only write decimal numbers if they begin with a number: `12.3` `0.5` It should also support: `.123`
being able to redo the init logic would allow for things like 'states' where a button could be in a 'pressed' state and apply certain property values only in that...
Should match the listbox type control as seen in WPF or HTML5's select
See https://gist.github.com/tabularelf/7556fb1cd47a5e39e78375088f8b24da
Example use case is the buttons for tabs in tab_panel -- it should be possible to make the background color change depending on which tab is selected. Currently these can...