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>2010-07-03 21:39:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-03 21:39:45 +0400
commitf95f6ed04f447afe4ba0bab6ad9a54c5b0dd699c (patch)
treece05db8d58b408a09ee8332bb4ed9b9781d93467 /io_mesh_raw
parentd79a2dc29ca7d42b446086214b7b853f6837dd71 (diff)
update for changes in blender
Diffstat (limited to 'io_mesh_raw')
-rw-r--r--io_mesh_raw/export_raw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_raw/export_raw.py b/io_mesh_raw/export_raw.py
index e2fd918b..59f83810 100644
--- a/io_mesh_raw/export_raw.py
+++ b/io_mesh_raw/export_raw.py
@@ -65,7 +65,7 @@ def export_raw(filepath, applyMods, triangulate):
faces = []
for obj in bpy.context.selected_objects:
if obj.type == 'MESH':
- matrix = obj.matrix
+ matrix = obj.matrix_world
if (applyMods):
me = obj.create_mesh(True, "PREVIEW")