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-11-14 18:48:01 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:08 +0300
commit325990ff6e57bfbac9c3aab5d12f13670f9ef246 (patch)
tree9b7bcd29864dd5cd1e5a937fa214e25dbb88baea /release/scripts/startup/bl_ui/properties_particle.py
parentfaa112cd27bbce2498910e551373a37437513f7a (diff)
Use dedicated debug values in cloth settings instead of abusing unused
other values. Conflicts: source/blender/physics/intern/BPH_mass_spring.cpp
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_particle.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index e6e7e1fb43c..97b835dd18c 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -329,6 +329,11 @@ 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()