diff --git a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/Versions.py b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/Versions.py index 9a00d0c..36d1617 100644 --- a/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/Versions.py +++ b/Blender/appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/Versions.py @@ -32,12 +32,18 @@ def eevee_alpha(mat, mode, value): pass else: mat.blend_method = mode - if mode == "HASHED" or mode == "BLEND": - if mode == "BLEND": - mode = "CLIP" - mat.shadow_method = mode - if value > 0 and mode == "CLIP": - mat.alpha_threshold = value + if BV < 4.03: + if mode == "HASHED" or mode == "BLEND": + if mode == "BLEND": + mode = "CLIP" + mat.shadow_method = mode + if value > 0 and mode == "CLIP": + mat.alpha_threshold = value + else: + if mode == "HASHED": + mat.surface_render_method = "DITHERED" + else: + mat.surface_render_method = "BLENDED" def rigify_finger(): 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 710a89c..b5d670e 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": (2024, 2, 14, 100), + "version": (2024, 2, 15, 105), "blender": (2, 80, 0), "location": "3DView > ToolShelf", "description": "Daz 3D transfer to Blender", diff --git a/DazStudioPlugin/Resources/blenderaddon.zip b/DazStudioPlugin/Resources/blenderaddon.zip index a9f6fe5..8e5ed5f 100644 Binary files a/DazStudioPlugin/Resources/blenderaddon.zip and b/DazStudioPlugin/Resources/blenderaddon.zip differ diff --git a/DazStudioPlugin/real_version.h b/DazStudioPlugin/real_version.h index 47a339a..36ce989 100644 --- a/DazStudioPlugin/real_version.h +++ b/DazStudioPlugin/real_version.h @@ -1,10 +1,10 @@ #pragma once -#define PRODUCT_VERSION_STRING "2024 version 2.14" +#define PRODUCT_VERSION_STRING "2024 version 2.15" #define VER_MAJOR 2024 #define VER_MINOR 2 -#define VER_REV 14 -#define VER_BUILD 100 +#define VER_REV 15 +#define VER_BUILD 105 #define TOSTRING(x) #x #define VERSION_STRING TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_REV) "." TOSTRING(VER_BUILD)