From d9bdae1d6dd48e184629d4cf2b81c694e5246f75 Mon Sep 17 00:00:00 2001 From: Alexander Gavrilov Date: Mon, 27 May 2019 21:26:37 +0300 Subject: Fix T63624: Rigify Quaternion/Euler conversion errors (2.8 compat fix). --- rigify/rot_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rigify/rot_mode.py') 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 -- cgit v1.2.3