From 7ceef8d89a6db0b4270df9333f32a1b12db12b1b Mon Sep 17 00:00:00 2001 From: Bartek Skorupa Date: Tue, 22 Nov 2011 10:10:32 +0000 Subject: Changed some names to match new API --- io_export_after_effects.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/io_export_after_effects.py b/io_export_after_effects.py index aec6835b..52ab6461 100644 --- a/io_export_after_effects.py +++ b/io_export_after_effects.py @@ -21,9 +21,9 @@ bl_info = { 'name': 'Export: Adobe After Effects (.jsx)', 'description': 'Export selected cameras, objects & bundles to Adobe After Effects CS3 and above', 'author': 'Bartek Skorupa', - 'version': (0, 57), + 'version': (0, 58), 'blender': (2, 6, 0), - 'api': 41760, + 'api': 42052, 'location': 'File > Export > Adobe After Effects (.jsx)', 'category': 'Import-Export', "warning": "", @@ -327,8 +327,8 @@ def write_jsx_file(file, data, selection, export_bundles, comp_name, prefix): #does the camera have a Camera Solver constrain if constrain.type == 'CAMERA_SOLVER': #Which movie clip does it use ? - if constrain.use_default_clip: - mc = data['scn'].clip + if constrain.use_active_clip: + mc = data['scn'].active_clip else: mc = constrain.clip -- cgit v1.2.3