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:
authorJulien Duroure <julien.duroure@gmail.com>2022-01-20 20:36:14 +0300
committerJulien Duroure <julien.duroure@gmail.com>2022-01-20 20:36:14 +0300
commit38be61ebb868c0b56c140286af8720b2e7d0de11 (patch)
tree7cd238b0f76500dd9769084b690b77d03611a9d7
parent97d4577285f5f7a75f663559a6a3ad6c692c087a (diff)
glTF exporter: images may be needlessly re-encoded in some cases
-rwxr-xr-xio_scene_gltf2/__init__.py2
-rw-r--r--io_scene_gltf2/blender/exp/gltf2_blender_image.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index c8fa899b..a31fad68 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -15,7 +15,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": (1, 8, 7),
+ "version": (1, 8, 8),
'blender': (3, 0, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_image.py b/io_scene_gltf2/blender/exp/gltf2_blender_image.py
index 8ac272d8..fc41b7f2 100644
--- a/io_scene_gltf2/blender/exp/gltf2_blender_image.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_image.py
@@ -189,8 +189,7 @@ class ExportImage:
def __encode_from_image(self, image: bpy.types.Image) -> bytes:
# See if there is an existing file we can use.
data = None
- if image.source == 'FILE' and image.file_format == self.file_format and \
- not image.is_dirty:
+ if image.source == 'FILE' and not image.is_dirty:
if image.packed_file is not None:
data = image.packed_file.data
else: