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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-09 06:19:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-09 06:19:14 +0400
commit5db2bb4fc27669cc79b7f7970a39a52723f843ee (patch)
tree74dd445e3bc228acddc4a7fbc505718f8e09b102 /io_export_after_effects.py
parent9692a3e6aa668f9a4ec7d22e8b2c51be9c863681 (diff)
- update 3DS export for BMesh.
- pep8 edits for after effects script.
Diffstat (limited to 'io_export_after_effects.py')
-rw-r--r--io_export_after_effects.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/io_export_after_effects.py b/io_export_after_effects.py
index 8d5d4eee..e72deb5c 100644
--- a/io_export_after_effects.py
+++ b/io_export_after_effects.py
@@ -331,7 +331,6 @@ def write_jsx_file(file, data, selection, include_animation, include_active_cam,
'orientation_anim': False,
}
-
# create structure for nulls
for i, obj in enumerate(selection['nulls']): # nulls representing blender's obs except cameras, lamps and solids
if include_selected_objects:
@@ -461,7 +460,7 @@ def write_jsx_file(file, data, selection, include_animation, include_active_cam,
js_data['cameras'][name_ae]['position_static'] = position
js_data['cameras'][name_ae]['orientation_static'] = orientation
js_data['cameras'][name_ae]['zoom_static'] = zoom
-
+
'''
# keyframes for all solids. Not ready yet. Temporarily not active
for i, ob in enumerate(selection['solids']):
@@ -469,7 +468,7 @@ def write_jsx_file(file, data, selection, include_animation, include_active_cam,
name_ae = selection['solids'][i][1]
#convert ob position to AE space
'''
-
+
# keyframes for all lights.
if include_selected_objects:
for i, ob in enumerate(selection['lights']):
@@ -549,7 +548,6 @@ def write_jsx_file(file, data, selection, include_animation, include_active_cam,
#
#
#
-
# ---- write JSX file
jsx_file = open(file, 'w')
@@ -678,6 +676,7 @@ def write_jsx_file(file, data, selection, include_animation, include_active_cam,
# DO IT
##########################################
+
def main(file, context, include_animation, include_active_cam, include_selected_cams, include_selected_objects, include_cam_bundles):
data = get_comp_data(context)
selection = get_selected(context)
@@ -772,4 +771,3 @@ def unregister():
if __name__ == "__main__":
register()
-