- 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>
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
type materialtexturedefinfo ui("Material Texture Def Info")
|
|
{
|
|
const PTR_INLINE = -1;
|
|
|
|
i32 texture_ptr ui("Texture Ptr");
|
|
|
|
// Inline data
|
|
if (texture_ptr == PTR_INLINE) {
|
|
image = parse_here("image");
|
|
}
|
|
}
|