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:
authorNils Thuerey <nils@thuerey.de>2005-11-09 10:56:26 +0300
committerNils Thuerey <nils@thuerey.de>2005-11-09 10:56:26 +0300
commite3f681da67989ed87a270a2c07849265d44bb7da (patch)
tree0f08613c0a39187dd7dbb84df7ff45f39936c36f /source/blender/makesdna/DNA_object_fluidsim.h
parent564b62901346ba0f40032616c51ac7da1c703a54 (diff)
- popup menu now aborts by default
- changed directory/prefix input (only 1 string instead of two, more similar to render output settings now) - changed reading/writing of surface files - slightly enhanced surface smoothness
Diffstat (limited to 'source/blender/makesdna/DNA_object_fluidsim.h')
-rw-r--r--source/blender/makesdna/DNA_object_fluidsim.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_object_fluidsim.h b/source/blender/makesdna/DNA_object_fluidsim.h
index e98f0b8a8e9..6a02680d694 100644
--- a/source/blender/makesdna/DNA_object_fluidsim.h
+++ b/source/blender/makesdna/DNA_object_fluidsim.h
@@ -68,9 +68,6 @@ typedef struct FluidsimSettings {
float gstar;
/* activate refinement? */
int maxRefine;
- /* store output path, and file prefix for baked fluid surface */
- /* strlens; 80= FILE_MAXFILE, 160= FILE_MAXDIR */
- char surfdataDir[160], surfdataPrefix[80];
/* fluid object type settings */
/* gravity strength */
@@ -78,6 +75,10 @@ typedef struct FluidsimSettings {
/* store pointer to original mesh (for replacing the current one) */
struct Mesh *orgMesh;
+
+ /* store output path, and file prefix for baked fluid surface */
+ /* strlens; 80= FILE_MAXFILE, 160= FILE_MAXDIR */
+ char surfdataPath[160+80];
} FluidsimSettings;
/* ob->fluidsimSettings defines */