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>2020-07-22 15:28:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-22 15:38:40 +0300
commit4950022e7d1aa7d01301f7d2bf173e84ca95b719 (patch)
tree3ff994cda5ff7dc825f10dc803aedcc4b37d7ce6 /release
parent980dd43bd4be7d5f2d893148984e5fd96c5747f4 (diff)
Object: add-object option to place on the surface normal
Optionally use the surface normal under the mouse cursor.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 818130976d3..83b3a27154a 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -455,6 +455,11 @@ class _defs_view3d_add:
row = layout.row()
row.prop(props, "plane_axis", text="")
row = layout.row()
+ row.scale_x = 0.8
+ row.label(text="Orientation:")
+ row = layout.row()
+ row.prop(props, "plane_orientation", text="")
+ row = layout.row()
row.scale_x = 0.7
row.prop(props, "plane_origin")