2026-01-07 16:36:40 -05:00
|
|
|
type gfxstreamingaabbtree [display="GFX Streaming AABB Tree"]
|
|
|
|
|
{
|
2026-01-11 12:09:57 -05:00
|
|
|
u16 first_item;
|
|
|
|
|
|
|
|
|
|
ui("first_item", "First Item");
|
|
|
|
|
u16 item_count;
|
|
|
|
|
|
|
|
|
|
ui("item_count", "Item Count");
|
|
|
|
|
u16 first_child;
|
|
|
|
|
|
|
|
|
|
ui("first_child", "First Child");
|
|
|
|
|
u16 child_count;
|
|
|
|
|
|
|
|
|
|
ui("child_count", "Child Count");
|
2026-01-07 16:36:40 -05:00
|
|
|
|
|
|
|
|
// Bounds (6 floats)
|
|
|
|
|
// Note: Using read() since we don't have float type yet
|
2026-01-11 12:09:57 -05:00
|
|
|
mins = read(12);
|
|
|
|
|
|
|
|
|
|
ui("mins", "Mins");
|
|
|
|
|
maxs = read(12);
|
|
|
|
|
|
|
|
|
|
ui("maxs", "Maxs");
|
2026-01-07 16:36:40 -05:00
|
|
|
}
|