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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-12-23 21:58:40 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-12-23 21:58:40 +0300
commitc0a273d1e7ae86f635816896be762dad3ebd1662 (patch)
tree2410b8ca863f37dd1c7783d9413def018fdd1a2b
parentf0fe54fcddf6fdcfe4709fa6513c09a216d2d466 (diff)
Fix T47053: Problem while import/export of obj files.
Missing import of Vector...
-rw-r--r--io_scene_obj/export_obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index ad506216..fbbc1e9c 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -44,7 +44,7 @@ def mesh_triangulate(me):
def write_mtl(scene, filepath, path_mode, copy_set, mtl_dict):
- from mathutils import Color
+ from mathutils import Color, Vector
world = scene.world
if world: