2020 "name" : "DKS Substance Painter" ,
2121 "description" : "Substance Painter Pipeline" ,
2222 "author" : "DigiKrafting.Studio" ,
23- "version" : (1 , 7 , 2 ),
23+ "version" : (1 , 7 , 5 ),
2424 "blender" : (2 , 80 , 0 ),
2525 "location" : "Info Toolbar, File -> Import, File -> Export, Menu" ,
2626 "wiki_url" : "https://github.com/DigiKrafting/blender_addon_substance_painter/wiki" ,
@@ -79,13 +79,18 @@ class dks_sp_addon_prefs(bpy.types.AddonPreferences):
7979 option_relative : bpy .props .BoolProperty (
8080 name = "Relative Paths" ,
8181 description = "Use Relative Paths for images." ,
82- default = True
82+ default = True
8383 )
8484 option_no_new : bpy .props .BoolProperty (
8585 name = "2018.0.1-2018.3.0 Project File Fix" ,
8686 description = "Exclude from path for SP 2018.0.1-2018.3.0 to avoid it being added to the textures path." ,
87- default = False
88- )
87+ default = False
88+ )
89+ option_use_height_maps : bpy .props .BoolProperty (
90+ name = "Use Height Maps" ,
91+ description = "Combines Height and Normal maps using the Bump Node." ,
92+ default = False ,
93+ )
8994 def draw (self , context ):
9095
9196 layout = self .layout
@@ -104,6 +109,7 @@ def draw(self, context):
104109 box .prop (self , 'option_relative' )
105110 box .prop (self , 'option_no_new' )
106111 box .prop (self , 'option_save_before_export' )
112+ box .prop (self , 'option_use_height_maps' )
107113
108114class dks_sp_menu (bpy .types .Menu ):
109115
0 commit comments