Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/rigify
diff options
context:
space:
mode:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-05-27 21:26:37 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-05-27 21:27:36 +0300
commitd9bdae1d6dd48e184629d4cf2b81c694e5246f75 (patch)
tree32a4b50e72abdaf9d69eb6b5b707fe590a31d680 /rigify
parent321d973432a67f98a1088e73a3d28479fe5b024e (diff)
Fix T63624: Rigify Quaternion/Euler conversion errors (2.8 compat fix).
Diffstat (limited to 'rigify')
-rw-r--r--rigify/rot_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/rot_mode.py b/rigify/rot_mode.py
index fbc425f6..50e79877 100644
--- a/rigify/rot_mode.py
+++ b/rigify/rot_mode.py
@@ -50,7 +50,7 @@ class convert():
if fc.data_path == data_path and (array_index < 0 or fc.array_index == array_index):
return fc
- fc = action.fcurves.new(data_path, array_index)
+ fc = action.fcurves.new(data_path, index=array_index)
fc.group = group
return fc