glTF exporter: fix accessor min/max float check

This commit is contained in:
Julien Duroure
2024-09-12 12:01:13 +02:00
parent 33dd8dbdac
commit 4c441c1c64
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (4, 3, 26),
"version": (4, 3, 27),
'blender': (4, 2, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',

View File

@@ -12,6 +12,8 @@
# NOTE: this file is modified for addonExtension use. See
# https://github.com/KhronosGroup/glTF-Blender-IO/commit/62ff119d8ffeab48f66e9d2699741407d532fe0f
# NOTE: this file is modified for mix/max accessor value check. See
# https://github.com/KhronosGroup/glTF-Blender-IO/pull/2338/commits/5178b5f61ab942704b85ff51262a3d595e70d2b5
import sys
import traceback
@@ -77,7 +79,7 @@ def from_bool(x):
def to_float(x):
assert isinstance(x, float)
assert isinstance(x, (int, float)) and not isinstance(x, bool)
return x