[Bf-blender-cvs] [addf274] master: Add "Bake Action" to Animation tab of 3D View Toolbar.

Jonathan Williamson noreply at git.blender.org
Fri Jan 3 22:28:55 CET 2014


Commit: addf274ce441f2bcfdea6ca49d77b17bbd2047db
Author: Jonathan Williamson
Date:   Thu Jan 2 21:31:28 2014 -0600
https://developer.blender.org/rBaddf274ce441f2bcfdea6ca49d77b17bbd2047db

Add "Bake Action" to Animation tab of 3D View Toolbar.

This is based on the rationale here, in order to begin giving a more complete set of animation tools to the toolbar: https://developer.blender.org/file/data/hlt2vtyqo4iqwookyack/PHID-FILE-ghcjwtxvl7siwidxlw6b/3D_View_Object_Mode_Tools.png

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 98e4deb..f39c616 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -270,6 +270,11 @@ class VIEW3D_PT_tools_animation(View3DPanel, Panel):
         row.operator("object.paths_calculate", text="Calculate")
         row.operator("object.paths_clear", text="Clear")
 
+        col.separator()
+        
+        col.label(text="Action:")
+        col.operator("nla.bake", text="Bake Action")
+
 class VIEW3D_PT_tools_rigidbody(View3DPanel, Panel):
     bl_category = "Physics"
     bl_context = "objectmode"




More information about the Bf-blender-cvs mailing list