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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_object.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py22
1 files changed, 1 insertions, 21 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 1cf8c75adad..3f1ea64bf30 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -149,13 +149,6 @@ class OBJECT_PT_relations(ObjectButtonsPanel, Panel):
sub.prop_search(ob, "parent_bone", parent.data, "bones")
sub.active = (parent is not None)
- col = flow.column()
- col.active = (ob.parent is not None)
- col.prop(ob, "use_slow_parent")
- sub = col.column()
- sub.active = (ob.use_slow_parent)
- sub.prop(ob, "slow_parent_offset", text="Offset")
-
col.separator()
col = flow.column()
@@ -295,20 +288,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
layout.use_property_split = True
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
- if ob.instance_type == 'FRAMES':
-
- col = flow.column(align=True)
- col.prop(ob, "instance_frames_start", text="Start")
- col.prop(ob, "instance_frames_end", text="End")
-
- col = flow.column(align=True)
- col.prop(ob, "instance_frames_on", text="On")
- col.prop(ob, "instance_frames_off", text="Off")
-
- col = flow.column(align=True)
- col.prop(ob, "use_instance_frames_speed", text="Speed")
-
- elif ob.instance_type == 'VERTS':
+ if ob.instance_type == 'VERTS':
layout.prop(ob, "use_instance_vertices_rotation", text="Rotation")
elif ob.instance_type == 'FACES':