summaryrefslogtreecommitdiffstats
path: root/src/animation/AnimBlendClumpData.h
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-01-13 14:54:45 +0100
committererorcun <erorcunerorcun@hotmail.com.tr>2021-01-13 14:54:45 +0100
commit011a9cc775bb37313af2ee6b7af2b84eb00df058 (patch)
treed310b443e28f48b9b39a539bf18d93311a9d58b8 /src/animation/AnimBlendClumpData.h
parentfix save loading, hopefully (diff)
parentremove scriptspath from premake (diff)
downloadre3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar.gz
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar.bz2
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar.lz
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar.xz
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.tar.zst
re3-011a9cc775bb37313af2ee6b7af2b84eb00df058.zip
Diffstat (limited to 'src/animation/AnimBlendClumpData.h')
-rw-r--r--src/animation/AnimBlendClumpData.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/animation/AnimBlendClumpData.h b/src/animation/AnimBlendClumpData.h
index fc74b42d..acfd006f 100644
--- a/src/animation/AnimBlendClumpData.h
+++ b/src/animation/AnimBlendClumpData.h
@@ -3,7 +3,6 @@
#include "AnimBlendList.h"
-// TODO: put somewhere else
struct AnimBlendFrameData
{
enum {
@@ -38,7 +37,10 @@ public:
#ifdef PED_SKIN
int32 modelNumber; // doesn't seem to be used
#endif
- CVector *velocity;
+ union {
+ CVector2D *velocity2d;
+ CVector *velocity3d;
+ };
// order of frames is determined by RW hierarchy
AnimBlendFrameData *frames;