From 3b3ee36a1d0bce6529b19af4510757b43ee0c846 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Fri, 15 Feb 2013 10:46:36 +0000 Subject: [PATCH] add check for 'None' textures --- io_scene_obj/export_obj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py index 2acd861ea..90d693168 100644 --- a/io_scene_obj/export_obj.py +++ b/io_scene_obj/export_obj.py @@ -124,7 +124,7 @@ def write_mtl(scene, filepath, path_mode, copy_set, mtl_dict): image_map = {} # backwards so topmost are highest priority for mtex in reversed(mat.texture_slots): - if mtex and mtex.texture.type == 'IMAGE': + if mtex and mtex.texture and mtex.texture.type == 'IMAGE': image = mtex.texture.image if image: # texface overrides others -- GitLab