@@ -1847,7 +1847,7 @@ def execute(self, context):
1847
1847
1848
1848
1849
1849
class ExpDisplacementImage (bpy .types .Operator , ExportHelper ):
1850
- """Export texture maps for the character"""
1850
+ """Export displacement texture map for the character"""
1851
1851
bl_idname = "mbast.export_dispimage"
1852
1852
bl_label = "Save displacement map"
1853
1853
filename_ext = ".png"
@@ -1864,9 +1864,9 @@ def execute(self, context):
1864
1864
1865
1865
1866
1866
class ExpDermalImage (bpy .types .Operator , ExportHelper ):
1867
- """Export texture maps for the character"""
1867
+ """Export albedo texture maps for the character"""
1868
1868
bl_idname = "mbast.export_dermimage"
1869
- bl_label = "Save dermal map"
1869
+ bl_label = "Save albedo map"
1870
1870
filename_ext = ".png"
1871
1871
filter_glob : bpy .props .StringProperty (
1872
1872
default = "*.png" ,
@@ -1968,9 +1968,9 @@ def execute(self, context):
1968
1968
1969
1969
1970
1970
class LoadDermImage (bpy .types .Operator , ImportHelper ):
1971
- """Import texture maps for the character"""
1971
+ """Import albedo texture maps for the character"""
1972
1972
bl_idname = "mbast.import_dermal"
1973
- bl_label = "Load dermal map"
1973
+ bl_label = "Load albedo map"
1974
1974
filename_ext = ".png"
1975
1975
filter_glob : bpy .props .StringProperty (
1976
1976
default = "*.png" ,
@@ -1985,7 +1985,7 @@ def execute(self, context):
1985
1985
1986
1986
1987
1987
class LoadDispImage (bpy .types .Operator , ImportHelper ):
1988
- """Import texture maps for the character"""
1988
+ """Import displacement texture maps for the character"""
1989
1989
bl_idname = "mbast.import_displacement"
1990
1990
bl_label = "Load displacement map"
1991
1991
filename_ext = ".png"
@@ -3004,21 +3004,34 @@ def draw(self, context):
3004
3004
for material_data_prop in sorted (mblab_humanoid .character_material_properties .keys ()):
3005
3005
box_skin .prop (obj , material_data_prop )
3006
3006
3007
- # Finalize character
3007
+
3008
3008
box_act_tools_sub .label (text = "OTHERS" , icon = "RNA" )
3009
3009
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 )
3012
3016
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' )
3020
3028
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' )
3022
3035
3023
3036
# File tools
3024
3037
@@ -3053,35 +3066,25 @@ def draw(self, context):
3053
3066
box_file .operator ("mbast.export_character" , icon = 'EXPORT' )
3054
3067
box_file .operator ("mbast.import_character" , icon = 'IMPORT' )
3055
3068
3056
- # Display character
3069
+ # Finalize character
3057
3070
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 )
3060
3073
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' )
3077
3081
else :
3078
- box_disp .operator ("mbast.corrective_disable " , icon = 'X ' )
3082
+ box_fin .operator ("mbast.finalize_character " , icon = 'FREEZE ' )
3079
3083
3080
3084
self .layout .separator (factor = 0.5 )
3081
3085
self .layout .label (text = "AFTER-CREATION TOOLS" , icon = "MODIFIER_ON" )
3082
3086
layout_sub = self .layout .box ()
3083
3087
layout_sub .label (text = "FINALIZED characters ONLY" , icon = "INFO" )
3084
-
3085
3088
else :
3086
3089
gui_status = "NEW_SESSION"
3087
3090
0 commit comments