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:
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 6bb18fe1df9..b4f0c369d55 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -190,10 +190,10 @@ typedef struct Object {
LBuf lbuf;
LBuf port;
- float pad3, smoothresh; /* smoothresh is phong interpolation ray_shadow correction in render */
+ short fluidsimFlag; /* NT toggle fluidsim participation on/off */
+ char shapenr, shapeflag; /* current shape key for menu or pinned, flag for pinning */
+ float smoothresh; /* smoothresh is phong interpolation ray_shadow correction in render */
- short fluidsimFlag; /* NT toggle fluidsim participation on/off */
- short dnapadFluidsimDummy1, dnapadFluidsimDummy2, dnapadFluidsimDummy3; /* 8byte align */
struct FluidsimSettings *fluidsimSettings; /* if fluidsim enabled, store additional settings */
struct DerivedMesh *derivedDeform, *derivedFinal;
@@ -375,6 +375,11 @@ extern Object workob;
#define OB_ADDACT 1024
#define OB_SHOWCONT 2048
+/* ob->shapeflag */
+#define OB_SHAPE_LOCK 1
+#define OB_SHAPE_TEMPLOCK 2
+
+
/* ob->softflag in DNA_object_force.h */
#ifdef __cplusplus