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>2011-11-08 23:36:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-08 23:36:40 +0400
commit2a089d8e5bdc5a97f7c93306ce4a439c561573e0 (patch)
tree8c891b4f29393b7a959010286cd644651a233a10 /io_anim_camera.py
parent3e28b15f2aa2be1265977d14eb78122bae3e1096 (diff)
fix for error with mathutils changes
Diffstat (limited to 'io_anim_camera.py')
-rw-r--r--io_anim_camera.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_anim_camera.py b/io_anim_camera.py
index cf903de0..d426baac 100644
--- a/io_anim_camera.py
+++ b/io_anim_camera.py
@@ -87,9 +87,9 @@ def writeCameras(context, filepath, frame_start, frame_end, only_selected=False)
fw("obj = cameras['%s']\n" % obj.name)
matrix = obj.matrix_world.copy()
- fw("obj.location = %r\n" % matrix.to_translation()[:])
- fw("obj.scale = %r\n" % matrix.to_scale()[:])
- fw("obj.rotation_euler = %r\n" % matrix.to_euler()[:])
+ fw("obj.location = %r, %r, %r\n" % matrix.to_translation()[:])
+ fw("obj.scale = %r, %r, %r\n" % matrix.to_scale()[:])
+ fw("obj.rotation_euler = %r, %r, %r\n" % matrix.to_euler()[:])
fw("obj.keyframe_insert('location')\n")
fw("obj.keyframe_insert('scale')\n")