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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-09-21 22:20:02 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2008-09-21 22:20:02 +0400
commit8471184dc5a726903329bc37040e051e9ec0f5d4 (patch)
tree03312b48c93c5f2acb25e5280ce5a586244dd54e /source/blender/makesdna/DNA_modifier_types.h
parentafe851b6d194ad93f85a66ea5866a3709708089d (diff)
parent518b8fe01834b6379614f65f7c611645e5ad4bd5 (diff)
Merging fluidcontrol to trunk from rev16649 fluidcontrol branch. Code provided by Nils Thuerey.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 9599cc1d247..114dfe10bae 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -36,6 +36,7 @@ typedef enum ModifierType {
eModifierType_Collision,
eModifierType_Bevel,
eModifierType_Shrinkwrap,
+ eModifierType_Fluidsim,
NUM_MODIFIER_TYPES
} ModifierType;
@@ -492,6 +493,13 @@ typedef struct ExplodeModifierData {
float protect;
} ExplodeModifierData;
+typedef struct FluidsimModifierData {
+ ModifierData modifier;
+
+ struct FluidsimSettings *fss; /* definition is is DNA_object_fluidsim.h */
+ struct PointCache *point_cache; /* definition is in DNA_object_force.h */
+} FluidsimModifierData;
+
typedef struct ShrinkwrapModifierData {
ModifierData modifier;