XPlor/definitions/cod/materialconstantdef.xscript

14 lines
343 B
Plaintext
Raw Normal View History

type materialconstantdef ui("Material Constant Def")
2026-01-01 22:18:40 -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);
name = ascii(name_bytes) ui("Name");
2026-01-01 22:18:40 -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
}