It works but there is a memory issue... (parsing in tick update)

This commit is contained in:
2024-03-10 20:09:04 -04:00
parent c80254adbc
commit 304e710c16
16 changed files with 439 additions and 82 deletions

View File

@ -75,8 +75,10 @@ render :: proc()
ui := project.workspace.ui
hot_box := zpl_hmap_get( ui.curr_cache, u64(ui.hot) )
active_box := zpl_hmap_get( ui.curr_cache, u64(ui.active) )
debug_text("Box Count: %v", ui.built_box_count )
hot_box := ui_box_from_key( ui.curr_cache, ui.hot )
active_box := ui_box_from_key( ui.curr_cache, ui.active )
if hot_box != nil {
debug_text("Hot Box: %v", hot_box.label.str )
}