Fix T63624: Rigify Quaternion/Euler conversion errors (2.8 compat fix).

This commit is contained in:
Alexander Gavrilov 2019-05-27 21:26:37 +03:00
parent 321d973432
commit d9bdae1d6d
Notes: blender-bot 2023-02-14 19:16:37 +01:00
Referenced by issue #63624, Rigify Quat/Euler conversion errors
1 changed files with 1 additions and 1 deletions

View File

@ -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