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 /release
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 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 9e8804328c2..1176245da83 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -361,11 +361,6 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, Panel):
sub.prop(cloth, "density_target", text="Density Target")
sub.prop(cloth, "density_strength", slider=True, text="Strength")
col.prop(cloth, "voxel_cell_size")
- sub = col.column(align=True)
- sub.prop(cloth, "debug1")
- sub.prop(cloth, "debug2")
- sub.prop(cloth, "debug3")
- sub.prop(cloth, "debug4")
split.separator()
@@ -381,7 +376,6 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, Panel):
row = col.row()
row.prop(psys.settings, "show_hair_grid", text="HairGrid")
- row.prop(cloth_md, "show_debug_data", text="Debug")
if result:
box = layout.box()