- Migrate from set_global/get_global to ctx_set/ctx_get - Replace if-else chains with match() expressions - Update inline pointer handling patterns - Improve GfxWorld and asset parsing structures - Clean up redundant code across 60+ definition files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
513 B
Plaintext
29 lines
513 B
Plaintext
type editfielddef [display="Edit Field Def"]
|
|
{
|
|
// editFieldDef_s - 32 bytes total
|
|
f32 min_val;
|
|
|
|
ui("min_val", "Min Val");
|
|
f32 max_val;
|
|
|
|
ui("max_val", "Max Val");
|
|
f32 def_val;
|
|
|
|
ui("def_val", "Def Val");
|
|
f32 range;
|
|
|
|
ui("range", "Range");
|
|
i32 max_chars;
|
|
|
|
ui("max_chars", "Max Chars");
|
|
i32 max_chars_goto_next;
|
|
|
|
ui("max_chars_goto_next", "Max Chars Goto Next");
|
|
i32 max_paint_chars;
|
|
|
|
ui("max_paint_chars", "Max Paint Chars");
|
|
i32 paint_offset;
|
|
|
|
ui("paint_offset", "Paint Offset");
|
|
}
|