[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31607] trunk/blender/release/scripts/ keyingsets/keyingsets_utils.py: Bugfix #23504: Axis-Angle Rotation keyframes were not being inserted correctly when using the 'Rotation' Keying Set

Joshua Leung aligorith at gmail.com
Fri Aug 27 06:43:47 CEST 2010


Revision: 31607
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31607
Author:   aligorith
Date:     2010-08-27 06:43:47 +0200 (Fri, 27 Aug 2010)

Log Message:
-----------
Bugfix #23504: Axis-Angle Rotation keyframes were not being inserted correctly when using the 'Rotation' Keying Set

Modified Paths:
--------------
    trunk/blender/release/scripts/keyingsets/keyingsets_utils.py

Modified: trunk/blender/release/scripts/keyingsets/keyingsets_utils.py
===================================================================
--- trunk/blender/release/scripts/keyingsets/keyingsets_utils.py	2010-08-27 04:43:42 UTC (rev 31606)
+++ trunk/blender/release/scripts/keyingsets/keyingsets_utils.py	2010-08-27 04:43:47 UTC (rev 31607)
@@ -116,7 +116,7 @@
     #   rotation mode affects the property used
     if data.rotation_mode == 'QUATERNION':
         path = path_add_property(base_path, "rotation_quaternion")
-    elif data.rotation_mode == 'AXISANGLE':
+    elif data.rotation_mode == 'AXIS_ANGLE':
         path = path_add_property(base_path, "rotation_axis_angle")
     else:
         path = path_add_property(base_path, "rotation_euler")





More information about the Bf-blender-cvs mailing list