[Bf-extensions-cvs] [58453d7c] master: bake textures into 3d-coat works now

Kalle-Samuli Riihikoski noreply at git.blender.org
Wed Mar 27 12:05:46 CET 2019


Commit: 58453d7c29ce2562d57bcf9b4c5a163dd6a0ffd2
Author: Kalle-Samuli Riihikoski
Date:   Wed Mar 27 13:04:26 2019 +0200
Branches: master
https://developer.blender.org/rBA58453d7c29ce2562d57bcf9b4c5a163dd6a0ffd2

bake textures into 3d-coat works now

===================================================================

M	io_coat3D/__init__.py

===================================================================

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:



More information about the Bf-extensions-cvs mailing list