ModelInfo
Description
Table returned by util.GetModelInfo.
Members
string KeyValues
Valve key-value formatted info about the model's physics (Constraint Info, etc). This is limited to 4096 characters.
This data can be parsed into a Lua table via util.KeyValuesToTablePreserveOrder
string ModelKeyValues
Valve key-value formatted info about the model (
$keyvalues
command in the .qc
of the model), if present.
Can describe things like health of a prop, flammability, etc.
number MaterialCount
Number of materials used by this model.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
number SequenceCount
Number of sequences the model has.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
number AttachmentCount
Number of attachments the model has.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
string ModelName
Name of the model, as embedded in the model file itself. This may be different from the model path of the model on disk.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
number Version
Model version. This should be 48 most of the time, but can be different from mountable games.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
number Checksum
Checksum (CRC32) of the model. This value should be identical across all files for the same model. (.vtx, .mdl, .vvd, etc.)
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
string SurfacePropName
Name of the surface property for this model. See util.GetSurfaceData for more details about what they are.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
Vector EyePosition
If present, position of the eyes of the model, for NPCs.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
Vector IllumPosition
Illumination position for the model, for cases where the model root would be potentially outside of the world.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
Vector HullMin
Mins of the model's bounding box.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
Vector HullMax
Maxs of the model's bounding box.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
table Attachments
A list of attachments the model has.
Each attachment is a table with the following info:
- Name
- Bone
- Offset
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
table Bones
A list of bones the model has. Please node that the keys of this table are not bone IDs, it's just a list, <validate>but it might be safe to assume the keys are (BoneID-1) due to Lua table indexes starting at 1.</validate>.
Each bone in the list has the following fields:
- Name
- Parent
- Flags
- PhysObj
- SurfacePropName
- Position
- Angle
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
table Sequences
A list of sequences the model has, including the ones from
$includemodel
s.
Each sequence is a table with the following info:
- Name
- Activity
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
sequental table<string> Materials
A list of materials the model uses, across all its meshes.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.
sequental table<string> MaterialDirectories
A list of folders the game will look in for the Materials.
This was recently added in version (2025.04.01). It might only be available on the Dev Branch right now.