- Volition VPP: Unified BE/LE types using inheritance pattern - THQA PAK: Child types now inherit byte order from parent - Various XScript definition updates and fixes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
362 B
Plaintext
13 lines
362 B
Plaintext
type editfielddef ui("Edit Field Def")
|
|
{
|
|
// editFieldDef_s - 32 bytes total
|
|
f32 min_val ui("Min Val");
|
|
f32 max_val ui("Max Val");
|
|
f32 def_val ui("Def Val");
|
|
f32 range ui("Range");
|
|
i32 max_chars ui("Max Chars");
|
|
i32 max_chars_goto_next ui("Max Chars Goto Next");
|
|
i32 max_paint_chars ui("Max Paint Chars");
|
|
i32 paint_offset ui("Paint Offset");
|
|
}
|