2026-01-11 16:08:46 -05:00
|
|
|
type materialconstantdef ui("Material Constant Def")
|
2026-01-01 22:18:40 -05:00
|
|
|
{
|
2026-01-11 16:08:46 -05:00
|
|
|
u32 name_hash ui("Name Hash");
|
2026-01-01 22:18:40 -05:00
|
|
|
|
|
|
|
|
// Name is 12 bytes of raw data (null-padded string)
|
|
|
|
|
name_bytes = read(12);
|
2026-01-11 16:08:46 -05:00
|
|
|
name = ascii(name_bytes) ui("Name");
|
2026-01-01 22:18:40 -05:00
|
|
|
|
2026-01-11 16:08:46 -05:00
|
|
|
u32 literal_1 ui("Literal 1");
|
|
|
|
|
u32 literal_2 ui("Literal 2");
|
|
|
|
|
u32 literal_3 ui("Literal 3");
|
|
|
|
|
u32 literal_4 ui("Literal 4");
|
2026-01-01 22:18:40 -05:00
|
|
|
}
|