diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cb6d01..0411e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ Activate / deactivate layer opaticty according to prefix Activate / deactivate all masks using MA layers --> + +0.6.9 + +- fix: shift correction error + 0.6.8 - feat: New multi-scene viewlayer inspection button diff --git a/OP_export_to_ae.py b/OP_export_to_ae.py index 575bd8f..2080261 100644 --- a/OP_export_to_ae.py +++ b/OP_export_to_ae.py @@ -163,7 +163,7 @@ class GPEXP_OT_fix_overscan_shift(bpy.types.Operator): if fn.has_keyframe(cam, 'shift_x'): fcu = cam.animation_data.action.fcurves.find('shift_x') for k in fcu.keyframe_points: - k.y = k.y * ratio_x + k.co.y = k.co.y * ratio_x else: if cam.shift_x != 1: cam.shift_x = cam.shift_x * ratio_x @@ -172,7 +172,7 @@ class GPEXP_OT_fix_overscan_shift(bpy.types.Operator): if fn.has_keyframe(cam, 'shift_y'): fcu = cam.animation_data.action.fcurves.find('shift_y') for k in fcu.keyframe_points: - k.y = k.y * ratio_y + k.co.y = k.co.y * ratio_y else: if cam.shift_y != 1: cam.shift_y = cam.shift_y * ratio_y diff --git a/__init__.py b/__init__.py index df0089e..2a47cf7 100644 --- a/__init__.py +++ b/__init__.py @@ -2,7 +2,7 @@ bl_info = { "name": "GP Render", "description": "Organise export of gp layers through compositor output", "author": "Samuel Bernou", - "version": (0, 6, 8), + "version": (0, 6, 9), "blender": (2, 93, 0), "location": "View3D", "warning": "",