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-02-12 16:07:32 +0300
committerJulien Duroure <julien.duroure@gmail.com>2022-02-12 16:07:32 +0300
commit2fab0283474d136201bf2b8f947e8f96fa71b838 (patch)
tree0c98511b2d9cc27a569d673e6bd295d9e5fd6dd6 /io_scene_gltf2/__init__.py
parent693a5d4fa7eefafe322d3494245443d7978345ba (diff)
parent4003baf03d7d6d78ef4c16be79c73edadf87759c (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'io_scene_gltf2/__init__.py')
-rwxr-xr-xio_scene_gltf2/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 7e1ff49d..2ef90a40 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -4,7 +4,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": (3, 2, 4),
+ "version": (3, 2, 5),
'blender': (3, 1, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -149,10 +149,12 @@ class ExportGLTF2_Base:
('JPEG', 'JPEG Format (.jpg)',
'Save images as JPEGs. (Images that need alpha are saved as PNGs though.) '
'Be aware of a possible loss in quality'),
+ ('NONE', 'None',
+ 'Don\'t export images.'),
),
description=(
'Output format for images. PNG is lossless and generally preferred, but JPEG might be preferable for web '
- 'applications due to the smaller file size'
+ 'applications due to the smaller file size. Alternatively they can be omitted if they are not needed'
),
default='AUTO'
)