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:
authorCampbell Barton <ideasman42@gmail.com>2016-06-16 18:45:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-06-16 18:56:59 +0300
commit42e2398ae35da2b499d18ea589767108bd093687 (patch)
tree4c3ca671804e785210c6acd6f29c66fe37545fa4 /release
parent3f744a16c4ad62855a31151b0ad354519560ddc0 (diff)
Vertex paint color operations
D2050 by @metaraptor with edits Adds levels, brightness/contrast, hsv & invert operations.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e8d3329c0da..b88b831ec4b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1726,6 +1726,13 @@ class VIEW3D_MT_paint_vertex(Menu):
layout.operator("paint.vertex_color_smooth")
layout.operator("paint.vertex_color_dirt")
+ layout.separator()
+
+ layout.operator("paint.vertex_color_invert", text="Invert")
+ layout.operator("paint.vertex_color_levels", text="Levels")
+ layout.operator("paint.vertex_color_hsv", text="Hue Saturation Value")
+ layout.operator("paint.vertex_color_brightness_contrast", text="Bright/Contrast")
+
class VIEW3D_MT_hook(Menu):
bl_label = "Hooks"