mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 05:49:22 +00:00
added animation system (with skin support for now)
This commit is contained in:
parent
a600fa9976
commit
e7ed4d0096
23 changed files with 3075 additions and 2 deletions
20
src/animation/AnimBlendAssocGroup.h
Normal file
20
src/animation/AnimBlendAssocGroup.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
class CAnimBlendAssociation;
|
||||
|
||||
class CAnimBlendAssocGroup
|
||||
{
|
||||
public:
|
||||
CAnimBlendAssociation *assocList;
|
||||
int32 numAssociations;
|
||||
|
||||
CAnimBlendAssocGroup(void);
|
||||
~CAnimBlendAssocGroup(void);
|
||||
void DestroyAssociations(void);
|
||||
CAnimBlendAssociation *GetAnimation(uint32 id);
|
||||
CAnimBlendAssociation *GetAnimation(const char *name);
|
||||
CAnimBlendAssociation *CopyAnimation(uint32 id);
|
||||
CAnimBlendAssociation *CopyAnimation(const char *name);
|
||||
void CreateAssociations(const char *name);
|
||||
void CreateAssociations(const char *blockName, RpClump *clump, char **animNames, int numAssocs);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue