From d1fe2d0dce43fd1e16d2683dc4541b2e4e78065e Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 20 May 2019 08:28:29 +0200 Subject: Fix T64853: FBX fail to export after recent changes --- io_scene_fbx/export_fbx_bin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_scene_fbx/export_fbx_bin.py') 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: -- cgit v1.2.3