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>2019-08-28 18:45:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-28 18:53:07 +0300
commit69a966aca0c147ef21eeee986cc73554bfe5e948 (patch)
tree41b0653e05767cadf8e50500fba5c7b6d585fae4 /release
parent01bd22929fdb2c7ec0f564faee46c0ad84d11687 (diff)
Transform: option to transform parent objects without children
Supports parent/child chains with mixed selections. Currently accessible from the pivot popover (may be moved along with the other options here).
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 33b950ab468..d72b527e6cd 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -5895,6 +5895,7 @@ class VIEW3D_PT_pivot_point(Panel):
col.label(text="Affect Only")
col.prop(tool_settings, "use_transform_data_origin", text="Origins")
col.prop(tool_settings, "use_transform_pivot_point_align", text="Locations")
+ col.prop(tool_settings, "use_transform_skip_children", text="Parents (Skip Children)")
class VIEW3D_PT_snapping(Panel):