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-09-21 17:30:39 +0400
committerNils Thuerey <nils@thuerey.de>2005-09-21 17:30:39 +0400
commite1fe7c88eca7a2aef1050c606ee622724e92d09a (patch)
tree29f40fb9578d38429c23ce2bbd8bc8c72d6e81b9 /source/blender/src/fluidsim.c
parent10a790041b7f11fde203ec38debb3f8c28a0dbcc (diff)
- fixes elbeem SConscript file for python2.3
- added temporary fix for 128+ resolutions
Diffstat (limited to 'source/blender/src/fluidsim.c')
-rw-r--r--source/blender/src/fluidsim.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/fluidsim.c b/source/blender/src/fluidsim.c
index b6a020286f6..f5f1b642240 100644
--- a/source/blender/src/fluidsim.c
+++ b/source/blender/src/fluidsim.c
@@ -254,7 +254,7 @@ void fluidsimBake(struct Object *ob)
// it would be more accurate to take into account geometry and no.
// fluid cells... max 1 for now...
if(fssDomain->resolutionxyz>128) {
- fssDomain->maxRefine = 1;
+ fssDomain->maxRefine = 0; // disable for now
} else
if(fssDomain->resolutionxyz>64) {
fssDomain->maxRefine = 0;
@@ -336,7 +336,6 @@ void fluidsimBake(struct Object *ob)
" geoinit = 1; \n"
" geoinitid = 1; \n" "\n"
- //" p_setup = \"caro\"; \n" // FIXME REMOVE?
" p_gravity = " "%f %f %f" /* 3,4,5 pGravity*/ "; #cfgset \n" "\n"
" timeadap = 1; \n"