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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-09-18 11:24:31 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:02 +0300
commitf03d253f55060d3ae238e068c620d76b7dcf0ede (patch)
tree448b621d2e817a5679f3d2e81c2473e7bbd29c76 /source/blender/makesrna/intern/rna_cloth.c
parent226beb986690046adfdf10a3ed72034fa322ccdb (diff)
Disabled the velocity filtering feature for now, since the weighting is
incorrect. The voxel grid needs better tool support to make it usable, so fixing the filtering is not high priority right now.
Diffstat (limited to 'source/blender/makesrna/intern/rna_cloth.c')
-rw-r--r--source/blender/makesrna/intern/rna_cloth.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c
index eff194fcd5c..154ab7db52d 100644
--- a/source/blender/makesrna/intern/rna_cloth.c
+++ b/source/blender/makesrna/intern/rna_cloth.c
@@ -417,12 +417,14 @@ static void rna_def_cloth_sim_settings(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Voxel Grid Resolution", "Resolution of the voxel grid for interaction effects");
RNA_def_property_update(prop, 0, "rna_cloth_update");
+#if 0 /* disabled */
prop = RNA_def_property(srna, "voxel_filter_size", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "voxel_filter_size");
RNA_def_property_range(prop, 0, 8);
RNA_def_property_int_default(prop, 0);
RNA_def_property_ui_text(prop, "Voxel Grid Filter Size", "Number of cells to use for filtering grid velocity");
RNA_def_property_update(prop, 0, "rna_cloth_update");
+#endif
/* springs */