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-10-31 16:23:32 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:05 +0300
commitc3968861b3e5a81e138003cca2b51a040a0ed454 (patch)
treec197df6f86c76ead3e76c9b3f4fc7caa0f4b584d /release
parentaea309779f631e4f0bb6fa2a38f39d4f4db4de97 (diff)
Debug drawing feature to visualize the hair continuum grid.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 4752b7578b5..614a64867c9 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -343,7 +343,9 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, Panel):
col.label(text="Quality:")
col.prop(cloth, "quality", text="Steps", slider=True)
- col.prop(cloth_md, "show_debug_data", text="Debug")
+ 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()