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:
authorJoshua Leung <aligorith@gmail.com>2010-08-27 08:43:47 +0400
committerJoshua Leung <aligorith@gmail.com>2010-08-27 08:43:47 +0400
commit3912f5540863022fa7632b547fad867bd7d24411 (patch)
treeafa1a40f2e1f19a6e7198e55215c9f1303c49e87 /release
parentfb66c93b90235eaaccab91a5318a7140fffa74aa (diff)
Bugfix #23504: Axis-Angle Rotation keyframes were not being inserted correctly when using the 'Rotation' Keying Set
Diffstat (limited to 'release')
-rw-r--r--release/scripts/keyingsets/keyingsets_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/keyingsets/keyingsets_utils.py b/release/scripts/keyingsets/keyingsets_utils.py
index a26483e57ce..901aa715296 100644
--- a/release/scripts/keyingsets/keyingsets_utils.py
+++ b/release/scripts/keyingsets/keyingsets_utils.py
@@ -116,7 +116,7 @@ def RKS_GEN_rotation(ksi, context, ks, data):
# 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")