- 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>
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
type materialshaderargument [display="Material Shader Argument"]
|
|
{
|
|
u16 arg_type;
|
|
|
|
ui("arg_type", "Type");
|
|
u16 dest;
|
|
|
|
ui("dest", "Dest");
|
|
|
|
// Argument definition
|
|
arg_def = parse_here("materialargumentdef");
|
|
}
|