Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek Skorupa <bartekskorupa@bartekskorupa.com>2011-11-22 14:10:32 +0400
committerBartek Skorupa <bartekskorupa@bartekskorupa.com>2011-11-22 14:10:32 +0400
commit7ceef8d89a6db0b4270df9333f32a1b12db12b1b (patch)
tree932486f2fc4451f47c8c5becf7ccf786db66fc17 /io_export_after_effects.py
parent0dd0453c734f4532811e5311eecac8581b234cbd (diff)
Changed some names to match new API
Diffstat (limited to 'io_export_after_effects.py')
-rw-r--r--io_export_after_effects.py8
1 files 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