Added scale field

This commit is contained in:
smallmodel 2024-06-08 00:08:54 +02:00
parent e3b9e48d8c
commit 28ea95b9ff
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -193,19 +193,21 @@ typedef struct dtiki_s {
} dtiki_t;
typedef struct {
int ident;
int version;
char name[64];
int numSurfaces;
int numBones;
int ofsBones;
int ofsSurfaces;
int ofsEnd;
int lodIndex[TIKI_SKEL_LOD_INDEXES];
int numBoxes;
int ofsBoxes;
int numMorphTargets;
int ofsMorphTargets;
int ident;
int version;
char name[64];
int numSurfaces;
int numBones;
int ofsBones;
int ofsSurfaces;
int ofsEnd;
int lodIndex[TIKI_SKEL_LOD_INDEXES];
int numBoxes;
int ofsBoxes;
int numMorphTargets;
int ofsMorphTargets;
// Added in 2.0 (SKD version 6)
float scale;
} skelHeader_t;
typedef struct {