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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-08-29 14:00:41 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-08-29 14:00:41 +0300
commit9f3bea45726e50b01491596993779e1e05306b99 (patch)
treed13f282968dcb953e40dac237af770d37cad0296
parentf1dd37b8ac8f2db93f56002bae24e70b2cbf986f (diff)
Fix (unreported) ImportImagesAsPlanes: broken alpha handling for shadeless/emit shaders.
Recent adding of Principled shader just removed the old alpha handling, but that one is still needed for the otehr shaders...
-rw-r--r--io_import_images_as_planes.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index 742623cb..c707c0af 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "Import Images as Planes",
"author": "Florian Meyer (tstscr), mont29, matali, Ted Schundler (SpkyElctrc)",
- "version": (3, 3, 0),
+ "version": (3, 3, 1),
"blender": (2, 80, 0),
"location": "File > Import > Images as Planes or Add > Mesh > Images as Planes",
"description": "Imports images and creates planes with the appropriate aspect ratio. "
@@ -1021,7 +1021,16 @@ class IMPORT_IMAGE_OT_to_plane(Operator, AddObjectHelper):
node_tree.links.new(core_shader.inputs[0], tex_image.outputs[0])
if self.use_transparency:
- node_tree.links.new(core_shader.inputs[18], tex_image.outputs[1])
+ if self.shader == 'PRINCIPLED':
+ node_tree.links.new(core_shader.inputs[18], tex_image.outputs[1])
+ else:
+ bsdf_transparent = node_tree.nodes.new('ShaderNodeBsdfTransparent')
+
+ mix_shader = node_tree.nodes.new('ShaderNodeMixShader')
+ node_tree.links.new(mix_shader.inputs[0], tex_image.outputs[1])
+ node_tree.links.new(mix_shader.inputs[1], bsdf_transparent.outputs[0])
+ node_tree.links.new(mix_shader.inputs[2], core_shader.outputs[0])
+ core_shader = mix_shader
node_tree.links.new(out_node.inputs[0], core_shader.outputs[0])