From 58453d7c29ce2562d57bcf9b4c5a163dd6a0ffd2 Mon Sep 17 00:00:00 2001 From: Kalle-Samuli Riihikoski Date: Wed, 27 Mar 2019 13:04:26 +0200 Subject: bake textures into 3d-coat works now --- io_coat3D/__init__.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'io_coat3D') diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py index 472867ec..e0fe76b1 100644 --- a/io_coat3D/__init__.py +++ b/io_coat3D/__init__.py @@ -638,13 +638,13 @@ class SCENE_OT_export(bpy.types.Operator): objekti.coat3D.applink_name = objekti.data.name mod_mat_list = {} - if (coat3D.bake_textures): - bake_location = folder_objects + os.sep + 'Bake' - if (os.path.isdir(bake_location)): - shutil.rmtree(bake_location) - os.makedirs(bake_location) - else: - os.makedirs(bake_location) + + bake_location = folder_objects + os.sep + 'Bake' + if (os.path.isdir(bake_location)): + shutil.rmtree(bake_location) + os.makedirs(bake_location) + else: + os.makedirs(bake_location) temp_string = '' for objekti in bpy.context.selected_objects: -- cgit v1.2.3