13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
type xmodel [display="XModel"]
|
|
{
|
|
i32 name_ptr [ui, readonly, display="Name Ptr"];
|
|
|
|
if (name_ptr == -1) {
|
|
name = cstring() [ui, readonly, display="Name"];
|
|
}
|
|
|
|
// TODO: Add full XModel structure
|
|
// For now, just read the name as a placeholder
|
|
// Full structure includes: LODs, surfaces, bones, collision, etc.
|
|
}
|