1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

Datadesc type fixups.

--HG--
extra : amend_source : c426b723acc32c36b08bdfe91a9af214f45cd442
This commit is contained in:
Nicholas Hastings
2013-12-18 09:54:27 -05:00
parent 5e193a4524
commit 1536ac9707

View File

@ -58,7 +58,7 @@ typedef enum _fieldtypes
FIELD_MATRIX3X4_WORLDSPACE, // matrix3x4_t that maps some local space to world space (translation is fixed up on level transitions)
FIELD_INTERVAL, // a start and range floating point interval ( e.g., 3.2->3.6 == 3.2 and 0.4 )
FIELD_MATERIALINDEX, // a material index (using the material precache string table)
FIELD_UNUSED,
FIELD_VECTOR2D, // 2 floats
FIELD_INTEGER64, // 64bit integer
@ -67,7 +67,11 @@ typedef enum _fieldtypes
FIELD_RESOURCE,
FIELD_TYPECOUNT, // MUST BE LAST
FIELD_TYPECOUNT, // This is where script variant field types start. Formerly last.
FIELD_MODELNAME = 45, // Engine string that is a model name (needs precache)
FIELD_MODELINDEX, // a model index
FIELD_MATERIALINDEX, // a material index (using the material precache string table)
} fieldtype_t;