Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-13 19:12:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-13 19:21:58 +0300
commit4ca298309620c65e390ccb52e5921bddfd69c31e (patch)
tree6c2ae39e55bcbb0d43688f8767c91904ed947140 /release/scripts/startup/bl_ui/properties_texture.py
parentcfe2c3213f4721f5cc04305308132fefd1f4d112 (diff)
Fix missing panels in texture properties with image texture.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_texture.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_texture.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_texture.py b/release/scripts/startup/bl_ui/properties_texture.py
index 1859b4bf3e8..b08b47fbe77 100644
--- a/release/scripts/startup/bl_ui/properties_texture.py
+++ b/release/scripts/startup/bl_ui/properties_texture.py
@@ -370,6 +370,7 @@ class TEXTURE_PT_image_sampling(TextureTypePanel, Panel):
bl_options = {'DEFAULT_CLOSED'}
bl_parent_id = 'TEXTURE_PT_image'
tex_type = 'IMAGE'
+ COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE'}
def draw(self, context):
layout = self.layout
@@ -402,6 +403,8 @@ class TEXTURE_PT_image_alpha(TextureTypePanel, Panel):
bl_label = "Alpha"
bl_options = {'DEFAULT_CLOSED'}
bl_parent_id = 'TEXTURE_PT_image'
+ tex_type = 'IMAGE'
+ COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE'}
def draw_header(self, context):
tex = context.texture
@@ -424,6 +427,7 @@ class TEXTURE_PT_image_mapping(TextureTypePanel, Panel):
bl_options = {'DEFAULT_CLOSED'}
bl_parent_id = 'TEXTURE_PT_image'
tex_type = 'IMAGE'
+ COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE'}
def draw(self, context):
layout = self.layout