mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-16 17:10:33 +00:00
CPedModelInfo and CTempColModels
This commit is contained in:
parent
1bee2caf5c
commit
a202e67349
12 changed files with 219 additions and 65 deletions
|
@ -38,6 +38,8 @@ public:
|
|||
CColModel *m_hitColModel;
|
||||
int8 radio1, radio2;
|
||||
|
||||
static base::cRelocatableChunkClassInfo msClassInfo;
|
||||
static CPedModelInfo msClassInstance;
|
||||
static RwObjectNameIdAssocation m_pPedIds[PED_NODE_MAX];
|
||||
|
||||
CPedModelInfo(void) : CClumpModelInfo(MITYPE_PED) { m_hitColModel = nil; }
|
||||
|
@ -45,7 +47,13 @@ public:
|
|||
void DeleteRwObject(void);
|
||||
void SetClump(RpClump *);
|
||||
|
||||
void CreateHitColModelSkinned(RpClump *clump);
|
||||
virtual void LoadModel(void *model, const void *chunk);
|
||||
virtual void Write(base::cRelocatableChunkWriter &writer);
|
||||
virtual void *WriteModel(base::cRelocatableChunkWriter &writer);
|
||||
virtual void RcWriteThis(base::cRelocatableChunkWriter &writer);
|
||||
virtual void RcWriteEmpty(base::cRelocatableChunkWriter &writer);
|
||||
|
||||
bool CreateHitColModelSkinned(RpClump *clump);
|
||||
CColModel *GetHitColModel(void) { return m_hitColModel; }
|
||||
CColModel *AnimatePedColModelSkinned(RpClump *clump);
|
||||
CColModel *AnimatePedColModelSkinnedWorld(RpClump *clump);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue