Skip to content
This repository was archived by the owner on Jul 21, 2024. It is now read-only.

Commit 9edab93

Browse files
committed
Updated code and blend file
1 parent 94b8719 commit 9edab93

8 files changed

+59
-70
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ Runblender.bat.lnk
1414
/.vscode
1515
notes.txt
1616
mb-lab_updater/MB-Lab_updater_status.json
17+
data/humanoid_library.blend1

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,22 @@ This fork is an attempt to keep this addon going forward as the original author
2424

2525
## Added
2626

27-
-
28-
2927
## Changed
3028

31-
-
29+
- MBLabSkin3 is a now based off of the 1.7.6 shader
30+
- AutoUpdater is disabled
3231

3332
## Bug Fixes
3433

34+
- Fixed bugs in various files to make it work with Blender 4.0
3535
-
3636

3737
## Known Issues
3838

3939
- MB-Dev tools may contain bugs that are unknown at this time
4040
- Importing BVH animation files is buggy
4141
- Hair presets have the old PrincipledHairBSDF which will result in incorrect rendering
42+
- Skin color and bump mapping change slightly when finalizing
4243

4344
## ManuelBastioniLAB 1.6.1a
4445

__init__.py

+41-38
Original file line numberDiff line numberDiff line change
@@ -1847,7 +1847,7 @@ def execute(self, context):
18471847

18481848

18491849
class ExpDisplacementImage(bpy.types.Operator, ExportHelper):
1850-
"""Export texture maps for the character"""
1850+
"""Export displacement texture map for the character"""
18511851
bl_idname = "mbast.export_dispimage"
18521852
bl_label = "Save displacement map"
18531853
filename_ext = ".png"
@@ -1864,9 +1864,9 @@ def execute(self, context):
18641864

18651865

18661866
class ExpDermalImage(bpy.types.Operator, ExportHelper):
1867-
"""Export texture maps for the character"""
1867+
"""Export albedo texture maps for the character"""
18681868
bl_idname = "mbast.export_dermimage"
1869-
bl_label = "Save dermal map"
1869+
bl_label = "Save albedo map"
18701870
filename_ext = ".png"
18711871
filter_glob: bpy.props.StringProperty(
18721872
default="*.png",
@@ -1968,9 +1968,9 @@ def execute(self, context):
19681968

19691969

19701970
class LoadDermImage(bpy.types.Operator, ImportHelper):
1971-
"""Import texture maps for the character"""
1971+
"""Import albedo texture maps for the character"""
19721972
bl_idname = "mbast.import_dermal"
1973-
bl_label = "Load dermal map"
1973+
bl_label = "Load albedo map"
19741974
filename_ext = ".png"
19751975
filter_glob: bpy.props.StringProperty(
19761976
default="*.png",
@@ -1985,7 +1985,7 @@ def execute(self, context):
19851985

19861986

19871987
class LoadDispImage(bpy.types.Operator, ImportHelper):
1988-
"""Import texture maps for the character"""
1988+
"""Import displacement texture maps for the character"""
19891989
bl_idname = "mbast.import_displacement"
19901990
bl_label = "Load displacement map"
19911991
filename_ext = ".png"
@@ -3004,21 +3004,34 @@ def draw(self, context):
30043004
for material_data_prop in sorted(mblab_humanoid.character_material_properties.keys()):
30053005
box_skin.prop(obj, material_data_prop)
30063006

3007-
# Finalize character
3007+
30083008
box_act_tools_sub.label(text="OTHERS", icon="RNA")
30093009
box_act_tools_c = box_act_tools_sub.column(align=True)
3010-
if gui_active_panel_display != "finalize":
3011-
box_act_tools_c.operator('mbast.button_finalize_on', icon=icon_expand)
3010+
3011+
3012+
# Display character
3013+
3014+
if gui_active_panel_display != "display_opt":
3015+
box_act_tools_c.operator('mbast.button_display_on', icon=icon_expand)
30123016
else:
3013-
box_act_tools_c.operator('mbast.button_finalize_off', icon=icon_collapse)
3014-
box_fin = self.layout.box()
3015-
box_fin.prop(scn, 'mblab_save_images_and_backup', icon='EXPORT')
3016-
box_fin.prop(scn, 'mblab_remove_all_modifiers', icon='CANCEL')
3017-
box_fin.prop(scn, 'mblab_final_prefix')
3018-
if scn.mblab_save_images_and_backup:
3019-
box_fin.operator("mbast.finalize_character_and_images", icon='FREEZE')
3017+
box_act_tools_c.operator('mbast.button_display_off', icon=icon_collapse)
3018+
box_disp = self.layout.box()
3019+
3020+
if mblab_humanoid.exists_displace_texture():
3021+
if mblab_humanoid.get_disp_visibility() is False:
3022+
box_disp.operator("mbast.displacement_enable", icon='MOD_DISPLACE')
3023+
else:
3024+
box_disp.operator("mbast.displacement_disable", icon='X')
3025+
if mblab_humanoid.get_subd_visibility() is False:
3026+
box_disp.operator("mbast.subdivision_enable", icon='MOD_SUBSURF')
3027+
box_disp.label(text="Subd. preview is very CPU intensive", icon='INFO')
30203028
else:
3021-
box_fin.operator("mbast.finalize_character", icon='FREEZE')
3029+
box_disp.operator("mbast.subdivision_disable", icon='X')
3030+
box_disp.label(text="Disable subdivision to increase performance", icon='ERROR')
3031+
if mblab_humanoid.get_smooth_visibility() is False:
3032+
box_disp.operator("mbast.corrective_enable", icon='MOD_SMOOTH')
3033+
else:
3034+
box_disp.operator("mbast.corrective_disable", icon='X')
30223035

30233036
# File tools
30243037

@@ -3053,35 +3066,25 @@ def draw(self, context):
30533066
box_file.operator("mbast.export_character", icon='EXPORT')
30543067
box_file.operator("mbast.import_character", icon='IMPORT')
30553068

3056-
# Display character
3069+
# Finalize character
30573070

3058-
if gui_active_panel_display != "display_opt":
3059-
box_act_tools_c.operator('mbast.button_display_on', icon=icon_expand)
3071+
if gui_active_panel_display != "finalize":
3072+
box_act_tools_c.operator('mbast.button_finalize_on', icon=icon_expand)
30603073
else:
3061-
box_act_tools_c.operator('mbast.button_display_off', icon=icon_collapse)
3062-
box_disp = self.layout.box()
3063-
3064-
if mblab_humanoid.exists_displace_texture():
3065-
if mblab_humanoid.get_disp_visibility() is False:
3066-
box_disp.operator("mbast.displacement_enable", icon='MOD_DISPLACE')
3067-
else:
3068-
box_disp.operator("mbast.displacement_disable", icon='X')
3069-
if mblab_humanoid.get_subd_visibility() is False:
3070-
box_disp.operator("mbast.subdivision_enable", icon='MOD_SUBSURF')
3071-
box_disp.label(text="Subd. preview is very CPU intensive", icon='INFO')
3072-
else:
3073-
box_disp.operator("mbast.subdivision_disable", icon='X')
3074-
box_disp.label(text="Disable subdivision to increase performance", icon='ERROR')
3075-
if mblab_humanoid.get_smooth_visibility() is False:
3076-
box_disp.operator("mbast.corrective_enable", icon='MOD_SMOOTH')
3074+
box_act_tools_c.operator('mbast.button_finalize_off', icon=icon_collapse)
3075+
box_fin = self.layout.box()
3076+
box_fin.prop(scn, 'mblab_save_images_and_backup', icon='EXPORT')
3077+
box_fin.prop(scn, 'mblab_remove_all_modifiers', icon='CANCEL')
3078+
box_fin.prop(scn, 'mblab_final_prefix')
3079+
if scn.mblab_save_images_and_backup:
3080+
box_fin.operator("mbast.finalize_character_and_images", icon='FREEZE')
30773081
else:
3078-
box_disp.operator("mbast.corrective_disable", icon='X')
3082+
box_fin.operator("mbast.finalize_character", icon='FREEZE')
30793083

30803084
self.layout.separator(factor=0.5)
30813085
self.layout.label(text="AFTER-CREATION TOOLS", icon="MODIFIER_ON")
30823086
layout_sub=self.layout.box()
30833087
layout_sub.label(text="FINALIZED characters ONLY", icon="INFO")
3084-
30853088
else:
30863089
gui_status = "NEW_SESSION"
30873090

algorithms.py

+1-16
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,7 @@
4040

4141
logger = logging.getLogger(__name__)
4242

43-
DEBUG_LEVEL = 3
44-
45-
# ------------------------------------------------------------------------
46-
# Print Log
47-
# ------------------------------------------------------------------------
48-
49-
def print_log_report(level, text_to_write):
50-
import warnings
51-
warnings.warn("print_log_report deprecated, use python logging", DeprecationWarning)
52-
l = 0
53-
levels = {"INFO": 0, "DEBUG": 1, "WARNING": 2, "ERROR": 3, "CRITICAL": 4,}
54-
if level in levels:
55-
l = levels[level]
56-
if l >= DEBUG_LEVEL:
57-
print(level + ": " + text_to_write)
58-
43+
# Had old debugger code here forever, it has been removed
5944

6045
# ------------------------------------------------------------------------
6146
# Algorithms

animationengine.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1023,9 +1023,8 @@ def bake_animation(self, target_armat, source_armat):
10231023
if source_armat.animation_data:
10241024
source_action = source_armat.animation_data.action
10251025
f_range = source_action.frame_range
1026-
# BUG
1027-
bpy.ops.nla.bake(frame_start=f_range[0], frame_end=f_range[1], only_selected=False,
1028-
visual_keying=True, clear_constraints=False, use_current_action=True, bake_types={'POSE'})
1026+
# Removed f_range, needs work
1027+
bpy.ops.nla.bake(only_selected=False, visual_keying=True, clear_constraints=False, use_current_action=True, bake_types={'POSE'})
10291028
self.remove_armature_constraints(target_armat)
10301029

10311030
@staticmethod

data/humanoid_library.blend

408 KB
Binary file not shown.

humanoid.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -858,15 +858,15 @@ def update_character(self, category_name=None, mode="update_all"):
858858
self.sync_gui_according_measures()
859859
if update_armature:
860860
self.sk_engine.fit_joints()
861-
#
862-
# if update_normals:
863-
# obj.data.normal_update()
861+
# BUG - causes error in console
862+
#if update_normals:
863+
# obj.data.normal_update()
864864
if update_proxy:
865865
self.fit_proxy()
866866

867867
self.set_subd_visibility(subdivision_value)
868868

869-
#logger.error("Character updated in {0} secs".format(time.time()-time1))
869+
logger.error("Character updated in {0} secs".format(time.time()-time1))
870870

871871
def generate_character(self, random_value, prv_face, prv_body, prv_mass, prv_tone, prv_height, prv_phenotype, set_tone_and_mass, body_mass, body_tone, prv_fantasy):
872872
logger.info("Generating character...")

materialengine.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, obj_name, character_config):
6363
"freckle_mask": character_config["texture_frecklemask"],
6464
"blush": character_config["texture_blush"],
6565
"sebum": character_config["texture_sebum"],
66-
"roughness": character_config["texture_roughness"],
66+
#"roughness": character_config["texture_roughness"],
6767
"thickness": character_config["texture_thickness"],
6868
"melanin": character_config["texture_melanin"],
6969
"lipmap": character_config["texture_lipmap"],
@@ -132,9 +132,9 @@ def texture_blush_exist(self):
132132
@property
133133
def texture_sebum_exist(self):
134134
return os.path.isfile(self.image_file_paths["sebum"])
135-
@property
136-
def texture_roughness_exist(self):
137-
return os.path.isfile(self.image_file_paths["roughness"])
135+
#@property
136+
#def texture_roughness_exist(self):
137+
# return os.path.isfile(self.image_file_paths["roughness"])
138138
@property
139139
def texture_melanin_exist(self):
140140
return os.path.isfile(self.image_file_paths["melanin"])
@@ -252,8 +252,8 @@ def update_shaders(self, material_parameters=[], update_textures_nodes=True):
252252
self.assign_image_to_node(material.name, node.name, self.image_file_names["blush"])
253253
if "_skn_sebum" in node.name:
254254
self.assign_image_to_node(material.name, node.name, self.image_file_names["sebum"])
255-
if "_skn_roughness" in node.name:
256-
self.assign_image_to_node(material.name, node.name, self.image_file_names["roughness"])
255+
#if "_skn_roughness" in node.name:
256+
# self.assign_image_to_node(material.name, node.name, self.image_file_names["roughness"])
257257
if "_skn_melanin" in node.name:
258258
self.assign_image_to_node(material.name, node.name, self.image_file_names["melanin"])
259259
if "_skn_thickness" in node.name:

0 commit comments

Comments
 (0)