Skip to content
Snippets Groups Projects
Commit 96036641 authored by Julien Duroure's avatar Julien Duroure
Browse files

glTF importer: create only 1 slot by material, if multiple primitive use same material

parent 1a4bf222
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (0, 9, 76),
"version": (0, 9, 77),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
......
......@@ -61,9 +61,9 @@ class BlenderMesh():
material = bpy.data.materials[material_name]
try:
material_idx = materials.index(material)
material_idx = materials.index(material.name)
except ValueError:
materials.append(material)
materials.append(material.name)
material_idx = len(materials) - 1
BlenderPrimitive.add_primitive_to_bmesh(gltf, bme, pymesh, prim, material_idx)
......@@ -72,8 +72,8 @@ class BlenderMesh():
mesh = bpy.data.meshes.new(name)
BlenderMesh.bmesh_to_mesh(gltf, pymesh, bme, mesh)
bme.free()
for material in materials:
mesh.materials.append(material)
for name_material in materials:
mesh.materials.append(bpy.data.materials[name_material])
mesh.update()
pymesh.blender_name = mesh.name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment