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>2015-01-21 12:07:11 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-21 12:07:11 +0300
commit47bf0934f5743d14024ef693b2bfe4510c2c666a (patch)
tree0e43269c789c7b6fb0cc31904a94f036f948ca3e /source/blender/makesrna/intern/rna_cloth.c
parent4422ecbb960e88c1b63ebaa325d5d44d052d095f (diff)
Removed generic debug1..4 values from the cloth data.
These were used as UI buttons during development. If such parameters are needed again later they should instead be added in the (now global) SimDebugData and made accessible with a dev addon or so.
Diffstat (limited to 'source/blender/makesrna/intern/rna_cloth.c')
-rw-r--r--source/blender/makesrna/intern/rna_cloth.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c
index 4e8cfb8303d..991020a1574 100644
--- a/source/blender/makesrna/intern/rna_cloth.c
+++ b/source/blender/makesrna/intern/rna_cloth.c
@@ -397,26 +397,6 @@ static void rna_def_cloth_sim_settings(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Target Density Strength", "Influence of target density on the simulation");
RNA_def_property_update(prop, 0, "rna_cloth_update");
- prop = RNA_def_property(srna, "debug1", PROP_FLOAT, PROP_NONE);
- RNA_def_property_range(prop, 0.0f, 1000000.0f);
- RNA_def_property_ui_text(prop, "Debug1", "");
- RNA_def_property_update(prop, 0, "rna_cloth_update");
-
- prop = RNA_def_property(srna, "debug2", PROP_FLOAT, PROP_NONE);
- RNA_def_property_range(prop, 0.0f, 1000000.0f);
- RNA_def_property_ui_text(prop, "Debug2", "");
- RNA_def_property_update(prop, 0, "rna_cloth_update");
-
- prop = RNA_def_property(srna, "debug3", PROP_INT, PROP_NONE);
- RNA_def_property_range(prop, 0.0f, 1000000.0f);
- RNA_def_property_ui_text(prop, "Debug3", "");
- RNA_def_property_update(prop, 0, "rna_cloth_update");
-
- prop = RNA_def_property(srna, "debug4", PROP_INT, PROP_NONE);
- RNA_def_property_range(prop, 0.0f, 1000000.0f);
- RNA_def_property_ui_text(prop, "Debug4", "");
- RNA_def_property_update(prop, 0, "rna_cloth_update");
-
/* mass */
prop = RNA_def_property(srna, "mass", PROP_FLOAT, PROP_NONE);