parent
eaf9c3b22f
commit
9a49175859
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
2.2.3
|
||||||
|
|
||||||
|
- fixed: Type error on realign ops
|
||||||
|
|
||||||
2.2.2
|
2.2.2
|
||||||
|
|
||||||
- fixed: draw_cam data not changed when working with multiple camera in a shot
|
- fixed: draw_cam data not changed when working with multiple camera in a shot
|
||||||
|
|
|
@ -162,7 +162,7 @@ def align_all_frames(reproject=True, ref=None, all_strokes=True):
|
||||||
chanel = 'rotation_quaternion' if o.rotation_mode == 'QUATERNION' else 'rotation_euler'
|
chanel = 'rotation_quaternion' if o.rotation_mode == 'QUATERNION' else 'rotation_euler'
|
||||||
|
|
||||||
## double list keys
|
## double list keys
|
||||||
rot_keys = [k.co.x for fcu in o.animation_data.action.fcurves for k in fcu.keyframe_points if fcu.data_path == chanel]
|
rot_keys = [int(k.co.x) for fcu in o.animation_data.action.fcurves for k in fcu.keyframe_points if fcu.data_path == chanel]
|
||||||
|
|
||||||
## normal iter
|
## normal iter
|
||||||
# for fcu in o.animation_data.action.fcurves:
|
# for fcu in o.animation_data.action.fcurves:
|
||||||
|
|
|
@ -4,7 +4,7 @@ bl_info = {
|
||||||
"name": "GP toolbox",
|
"name": "GP toolbox",
|
||||||
"description": "Tool set for Grease Pencil in animation production",
|
"description": "Tool set for Grease Pencil in animation production",
|
||||||
"author": "Samuel Bernou, Christophe Seux",
|
"author": "Samuel Bernou, Christophe Seux",
|
||||||
"version": (2, 2, 2),
|
"version": (2, 2, 3),
|
||||||
"blender": (3, 0, 0),
|
"blender": (3, 0, 0),
|
||||||
"location": "Sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
|
"location": "Sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
|
||||||
"warning": "",
|
"warning": "",
|
||||||
|
|
Loading…
Reference in New Issue