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>2018-04-24 21:37:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-24 21:37:37 +0300
commitf3692c6ab973d85e48ac374533d46ab343dce3ec (patch)
tree24e139492e41636a72bc82f0e384cc5f6da3032e /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent2cd9a0ce5c3785be3734d97446ff8470b22d6da7 (diff)
UI: remove animation panel
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 3b15ab1986b..91d55303914 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -108,34 +108,6 @@ class VIEW3D_PT_tools_object(View3DPanel, Panel):
row.operator("object.datalayout_transfer", text="Data Layout")
-class VIEW3D_PT_tools_animation(View3DPanel, Panel):
- bl_category = "Animation"
- bl_context = "objectmode"
- bl_label = "Animation"
-
- def draw(self, context):
- layout = self.layout
-
- ob = context.active_object
- mpath = ob.motion_path if ob else None
-
- draw_keyframing_tools(context, layout)
-
- col = layout.column(align=True)
- col.label(text="Motion Paths:")
- if mpath:
- row = col.row(align=True)
- row.operator("object.paths_update", text="Update")
- row.operator("object.paths_clear", text="", icon='X')
- else:
- col.operator("object.paths_calculate", text="Calculate")
-
- col.separator()
-
- col.label(text="Action:")
- col.operator("nla.bake", text="Bake Action")
-
-
class VIEW3D_PT_tools_rigid_body(View3DPanel, Panel):
bl_category = "Physics"
bl_context = "objectmode"
@@ -1689,7 +1661,6 @@ class VIEW3D_PT_tools_history(View3DPanel, Panel):
classes = (
VIEW3D_PT_tools_object,
- VIEW3D_PT_tools_animation,
VIEW3D_PT_tools_rigid_body,
VIEW3D_PT_tools_meshedit,
VIEW3D_PT_tools_shading,