[Bf-extensions-cvs] [111b8f7f] blender2.8: texture import name fix

Kalle-Samuli Riihikoski noreply at git.blender.org
Wed Dec 5 00:04:37 CET 2018


Commit: 111b8f7f0f1441a04295238c74975ca9083868b8
Author: Kalle-Samuli Riihikoski
Date:   Wed Dec 5 01:01:19 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBA111b8f7f0f1441a04295238c74975ca9083868b8

texture import name fix

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

M	io_coat3D/tex.py

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

diff --git a/io_coat3D/tex.py b/io_coat3D/tex.py
index c5c35052..6b936f0d 100644
--- a/io_coat3D/tex.py
+++ b/io_coat3D/tex.py
@@ -57,11 +57,11 @@ def readtexturefolder(mat_list,texturelist,is_new): #read textures from texture
         if texture_info[0] == mat_list[0].name:
             if texture_info[2] == 'color' or texture_info[2] == 'diffuse':
                 texcoat['color'].append(texture_info[3])
-            if texture_info[2] == 'metalness' or texture_info[2] == 'specular':
+            if texture_info[2] == 'metalness' or texture_info[2] == 'specular' or texture_info[2] == 'reflection':
                 texcoat['metalness'].append(texture_info[3])
             if texture_info[2] == 'rough' or texture_info[2] == 'roughness':
                 texcoat['rough'].append(texture_info[3])
-            if texture_info[2] == 'nmap' or texture_info[2] == 'normalmap':
+            if texture_info[2] == 'nmap' or texture_info[2] == 'normalmap' or texture_info[2] == 'normal_map':
                 texcoat['nmap'].append(texture_info[3])
             if texture_info[2] == 'emissive':
                 texcoat['emissive'].append(texture_info[3])



More information about the Bf-extensions-cvs mailing list