diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-08 16:06:25 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-08 16:06:25 +0200 |
commit | 756e4dd068e27b25c651e85781871295131b7ada (patch) | |
tree | f2975fd92f2bf57b07f924ff244b5a9ffd6cd4b2 /src/animation/AnimBlendSequence.h | |
parent | fix (diff) | |
parent | most of animation system done; little stuff here and there (diff) | |
download | re3-756e4dd068e27b25c651e85781871295131b7ada.tar re3-756e4dd068e27b25c651e85781871295131b7ada.tar.gz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.bz2 re3-756e4dd068e27b25c651e85781871295131b7ada.tar.lz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.xz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.zst re3-756e4dd068e27b25c651e85781871295131b7ada.zip |
Diffstat (limited to 'src/animation/AnimBlendSequence.h')
-rw-r--r-- | src/animation/AnimBlendSequence.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/animation/AnimBlendSequence.h b/src/animation/AnimBlendSequence.h index 1246d7b4..3d467078 100644 --- a/src/animation/AnimBlendSequence.h +++ b/src/animation/AnimBlendSequence.h @@ -33,13 +33,18 @@ public: CAnimBlendSequence(void); virtual ~CAnimBlendSequence(void); void SetName(char *name); - void SetNumFrames(int numFrames, bool translation); + void SetNumFrames(int numFrames, bool translation, bool compressed); void RemoveQuaternionFlips(void); KeyFrame *GetKeyFrame(int n) { return type & KF_TRANS ? &((KeyFrameTrans*)keyFrames)[n] : &((KeyFrame*)keyFrames)[n]; } + KeyFrame *GetKeyFrameCompressed(int n) { + return type & KF_TRANS ? + &((KeyFrameTrans*)keyFramesCompressed)[n] : + &((KeyFrame*)keyFramesCompressed)[n]; + } bool HasTranslation(void) { return !!(type & KF_TRANS); } // TODO? these are unused // void Uncompress(void); |