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

gltf exporter: Fix T76677 primitive extraction code refactoring

parent 955332bf
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": (1, 3, 28),
"version": (1, 3, 29),
'blender': (2, 90, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
......
This diff is collapsed.
......@@ -79,7 +79,8 @@ def pbr_specular_glossiness(mh):
)
if mh.pymat.occlusion_texture is not None:
node = make_settings_node(mh, location=(610, -1060))
node = make_settings_node(mh)
node.location = (610, -1060)
occlusion(
mh,
location=(510, -970),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment