diff --git a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/DtbMaterial.py b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/DtbMaterial.py index 67d42a92..5e71194d 100644 --- a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/DtbMaterial.py +++ b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/DtbMaterial.py @@ -260,7 +260,11 @@ def get_mat_type(self,mat_data): return "DefaultMaterial" def set_eevee_alpha(self,mat): - if mat.name == "Eyelashes": + if mat.name in [ + "Eyelashes", + "Hair" + ]: + Versions.eevee_alpha(mat, 'BLEND', 0) if mat.name in [ "Cornea", @@ -473,8 +477,10 @@ def wardrobe_texture(self): tex_node_output, shader_node.inputs[input_key] ) - # Set the cycles displacement method + # Set Alpha Modes + self.set_eevee_alpha(mat) + # Set the cycles displacement method if node_group == "IrayUberSkin": mat_links.new( shader_node.outputs['Displacement'], @@ -551,6 +557,10 @@ def env_textures(self,obj): tex_node_output, shader_node.inputs[input_key] ) + # Set Alpha Modes + self.set_eevee_alpha(mat) + + # Set the cycles displacement method mat.cycles.displacement_method = 'BUMP' diff --git a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/__init__.py b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/__init__.py index 1d7fbf95..8da66c11 100644 --- a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/__init__.py +++ b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/__init__.py @@ -1,7 +1,7 @@ bl_info = { "name": "DazToBlender", "author": "Daz 3D | https://www.daz3d.com", - "version": (2, 2, 0), + "version": (2, 2, 2), "blender": (2, 80, 0), "location": "3DView > ToolShelf", "description": "Daz 3D Genesis 3/8 transfer to Blender", diff --git a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/dependencies/link_library.blend b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/dependencies/link_library.blend index 98581b38..0d54b419 100644 Binary files a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/dependencies/link_library.blend and b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/dependencies/link_library.blend differ