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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-03-16 21:10:25 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-03-17 13:57:04 +0300
commit20d7c04305a39bc18d483baba26dfb54960bb92a (patch)
tree7357ca92ccdf0ab06e277af4aee313321b93fafe /source/blender/blenkernel
parent7f3e84deb5aff74106c29965b70664cdb9883ed8 (diff)
Fluid: Re-dded Empty Space option in the UI
This option existed already and was just hidden in the UI. With the new fluids system though, it will only be used for rendering - and not to optimize the cache.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/fluid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 366137b5fa6..33124bd23a5 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -4851,7 +4851,7 @@ void BKE_fluid_modifier_create_type_data(struct FluidModifierData *mmd)
#else
mmd->domain->openvdb_comp = VDB_COMPRESSION_ZIP;
#endif
- mmd->domain->clipping = 1e-3f;
+ mmd->domain->clipping = 1e-6f;
mmd->domain->data_depth = 0;
}
else if (mmd->type & MOD_FLUID_TYPE_FLOW) {