Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-09-28 16:20:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-09-28 16:20:56 +0400
commit8f07d27de729dbe7a6d8a861a87cd7179f601431 (patch)
treeaf39471239f83b62d420adc7ef21d7a753765701
parent0356b92d4627885248aed7f39a3e20b267f2e8f7 (diff)
add temp defines to keep the game engine building, should be fixed properly.
fix implicit declaration too.
-rw-r--r--source/blender/makesdna/DNA_action_types.h8
-rw-r--r--source/blender/makesrna/intern/rna_pose.c1
2 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 05a4e502c84..2853b2cb029 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -553,5 +553,13 @@ typedef enum ACHAN_FLAG {
ACHAN_MOVED = (1<<31),
} ACHAN_FLAG;
+// XXX Incorrect, Temp for building
+#define PCHAN_ROT_QUAT -1
+#define PCHAN_ROT_XYZ -1
+#define PCHAN_ROT_XZY -1
+#define PCHAN_ROT_YXZ -1
+#define PCHAN_ROT_YZX -1
+#define PCHAN_ROT_ZXY -1
+#define PCHAN_ROT_ZYX -1
#endif
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index a1f4005df46..03ced839ebe 100644
--- a/source/blender/makesrna/intern/rna_pose.c
+++ b/source/blender/makesrna/intern/rna_pose.c
@@ -42,6 +42,7 @@
#include "BIK_api.h"
#include "BKE_action.h"
+#include "BKE_armature.h"
#include "BLI_arithb.h"
#include "DNA_userdef_types.h"