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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-20 09:28:29 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-20 09:28:29 +0300
commitd1fe2d0dce43fd1e16d2683dc4541b2e4e78065e (patch)
tree7727ccad52696f9c4809a1bc5210451b074741a0 /io_scene_fbx
parent58e5857aa78bb1d090c2f2de9ec5b6f39ac084ca (diff)
Fix T64853: FBX fail to export after recent changes
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx_bin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index ef2c8d54..915dda16 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -1336,7 +1336,7 @@ def fbx_data_texture_file_elements(root, blender_tex_key, scene_data):
elem_data_single_string_unicode(fbx_tex, b"RelativeFilename", fname_rel)
alpha_source = 0 # None
- if img.alpha_mode != 'IGNORE':
+ if img.alpha_mode != 'NONE':
# ~ if tex.texture.use_calculate_alpha:
# ~ alpha_source = 1 # RGBIntensity as alpha.
# ~ else: