13 lines
475 B
Plaintext
13 lines
475 B
Plaintext
|
|
type gfxstreamingaabbtree [display="GFX Streaming AABB Tree"]
|
||
|
|
{
|
||
|
|
u16 first_item [ui, readonly, display="First Item"];
|
||
|
|
u16 item_count [ui, readonly, display="Item Count"];
|
||
|
|
u16 first_child [ui, readonly, display="First Child"];
|
||
|
|
u16 child_count [ui, readonly, display="Child Count"];
|
||
|
|
|
||
|
|
// Bounds (6 floats)
|
||
|
|
// Note: Using read() since we don't have float type yet
|
||
|
|
mins = read(12) [ui, readonly, display="Mins"];
|
||
|
|
maxs = read(12) [ui, readonly, display="Maxs"];
|
||
|
|
}
|