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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-04-26 17:05:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-04-26 17:08:06 +0300
commitab500eb3f343e90eff633a9afaf24aa8209a7847 (patch)
tree4d32a78aac1c274f09c334dadb6c8da077976393 /release/scripts/startup/bl_ui
parent96392c33ef5fea3e77eedaef9748eb3e8e33095c (diff)
Hair edit: Add operator to uniform length of selected hairs
Request by Andy, should help him a lot doing weird and wonderful hair styles. A bit experimental yet, details of behavior might be changed after some real usage feedback.
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8db6f81ea51..374bc983d42 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1902,6 +1902,7 @@ class VIEW3D_MT_particle(Menu):
if particle_edit.select_mode == 'POINT':
layout.operator("particle.subdivide")
+ layout.operator("particle.unify_length")
layout.operator("particle.rekey")
layout.operator("particle.weight_set")
@@ -1921,6 +1922,7 @@ class VIEW3D_MT_particle_specials(Menu):
layout.operator("particle.rekey")
layout.operator("particle.delete")
layout.operator("particle.remove_doubles")
+ layout.operator("particle.unify_length")
if particle_edit.select_mode == 'POINT':
layout.operator("particle.subdivide")