Merge branch 'blender-v2.82-release'

This commit is contained in:
Julien Duroure 2020-01-24 17:48:52 +01:00
commit 71ac0b888b
2 changed files with 5 additions and 2 deletions

View File

@ -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, 2, 7),
"version": (1, 2, 8),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',

View File

@ -87,5 +87,8 @@ def set_extras(blender_element, extras, exclude=[]):
if custom_property in exclude:
continue
blender_element[custom_property] = value
try:
blender_element[custom_property] = value
except TypeError as e:
print('Error setting property %s to value of type %s' % (custom_property, type(value)))