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_import_images_as_planes.py
parent58e5857aa78bb1d090c2f2de9ec5b6f39ac084ca (diff)
Fix T64853: FBX fail to export after recent changes
Diffstat (limited to 'io_import_images_as_planes.py')
-rw-r--r--io_import_images_as_planes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index d610bff5..bed61ce3 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -939,7 +939,7 @@ class IMPORT_IMAGE_OT_to_plane(Operator, AddObjectHelper):
def apply_image_options(self, image):
if self.use_transparency == False:
- image.alpha_mode = 'IGNORE'
+ image.alpha_mode = 'NONE'
else:
image.alpha_mode = self.alpha_mode