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>2020-06-23 20:32:19 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-06-23 20:32:19 +0300
commitcbad9300d7e10fb2557609e62a3d0517e6b4b47f (patch)
treef4db666adf35a5b17de6a6e915b6b7d44bf31a02 /io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py
parent2d8c1b2c6184de632f8e21dfd1839749dcc1ec7f (diff)
glTF exporter: fix exporting EXTEND textures
Diffstat (limited to 'io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py')
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py
index 00fad3bf..a7fd2def 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py
@@ -39,7 +39,7 @@ def gather_sampler(blender_shader_node: bpy.types.Node, export_settings):
def __filter_sampler(blender_shader_node, export_settings):
- if not blender_shader_node.interpolation == 'Closest' and not blender_shader_node.extension == 'CLIP':
+ if not blender_shader_node.interpolation == 'Closest' and not blender_shader_node.extension == 'EXTEND':
return False
return True