diff options
author | Tim Angus <tim@ngus.net> | 2003-02-09 04:51:02 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2003-02-09 04:51:02 +0000 |
commit | d94d52e70af291daee2ad200b2fbeec1289106dc (patch) | |
tree | 797c6e7c500a74907974c95fa46b6d3fb888b651 /src/game | |
parent | 27d7ac95c1df03bea6d1a31d84dfe06f5ab765ba (diff) |
* Started construction of a new model format, similar to Q2's
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_public.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index 20b97cf7..feadfcd1 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -626,6 +626,50 @@ typedef enum MAX_PLAYER_TOTALANIMATIONS } playerAnimNumber_t; +// nonsegmented animations +typedef enum +{ + NSPA_STAND, + + NSPA_GESTURE, + + NSPA_WALK, + NSPA_RUN, + NSPA_RUNBACK, + + NSPA_STRAFELEFT, + NSPA_STRAFERIGHT, + + NSPA_SWIM, + + NSPA_JUMP, + NSPA_LAND, + NSPA_JUMPBACK, + NSPA_LANDBACK, + + NSPA_TURN, + + NSPA_ATTACK1, + NSPA_ATTACK2, + NSPA_ATTACK3, + + NSPA_PAIN1, + NSPA_PAIN2, + + NSPA_DEATH1, + NSPA_DEAD1, + NSPA_DEATH2, + NSPA_DEAD2, + NSPA_DEATH3, + NSPA_DEAD3, + + MAX_NONSEG_PLAYER_ANIMATIONS, + + NSPA_WALKBACK, + + MAX_NONSEG_PLAYER_TOTALANIMATIONS +} nonSegPlayerAnimNumber_t; + //TA: for buildable animations typedef enum { |