Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'blenderkit/autothumb_material_bg.py')
-rw-r--r--blenderkit/autothumb_material_bg.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/blenderkit/autothumb_material_bg.py b/blenderkit/autothumb_material_bg.py
index 51552c79..c8d34979 100644
--- a/blenderkit/autothumb_material_bg.py
+++ b/blenderkit/autothumb_material_bg.py
@@ -62,7 +62,7 @@ if __name__ == "__main__":
colmapdict = {
'BALL': 'Ball',
- 'CUBE': 'Cube',
+ 'BALL_COMPLEX': 'Ball complex',
'FLUID': 'Fluid',
'CLOTH': 'Cloth',
'HAIR': 'Hair'
@@ -79,6 +79,7 @@ if __name__ == "__main__":
for ob in bpy.context.visible_objects:
if ob.name[:15] == 'MaterialPreview':
ob.material_slots[0].material = mat
+ ob.data.use_auto_texspace = False
ob.data.texspace_size.x = 1 / tscale
ob.data.texspace_size.y = 1 / tscale
ob.data.texspace_size.z = 1 / tscale
@@ -88,7 +89,7 @@ if __name__ == "__main__":
else:
ob.cycles.use_adaptive_subdivision = False
ts = data['texture_size_meters']
- if data["thumbnail_type"] in ['BALL', 'CUBE', 'CLOTH']:
+ if data["thumbnail_type"] in ['BALL', 'BALL_COMPLEX', 'CLOTH']:
utils.automap(ob.name, tex_size = ts / tscale, just_scale = True, bg_exception=True)
bpy.context.view_layer.update()