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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-29 00:52:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-29 01:11:05 +0300
commit957b4547aeebc8c5a438ea507e8033cb563b7f40 (patch)
treee491f93bf4cf8da7e96efa6209dbc89930958b55 /release
parent097b1cd08a551c22df86c38c8d8380b87c88e81d (diff)
Cleanup: Remove unused MTex.texflag
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_texture.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_ui/properties_texture.py b/release/scripts/startup/bl_ui/properties_texture.py
index 425681fc19a..1761cec8106 100644
--- a/release/scripts/startup/bl_ui/properties_texture.py
+++ b/release/scripts/startup/bl_ui/properties_texture.py
@@ -745,9 +745,6 @@ class TEXTURE_PT_mapping(TextureSlotPanel, Panel):
elif tex.texture_coords == 'OBJECT':
col.prop(tex, "object", text="Object")
- elif tex.texture_coords == 'ALONG_STROKE':
- col.prop(tex, "use_tips", text="Use Tips")
-
col.separator()
if isinstance(idblock, FreestyleLineStyle):
@@ -840,15 +837,10 @@ class TEXTURE_PT_influence(TextureSlotPanel, Panel):
col = flow.column()
col.prop(tex, "blend_type", text="Blend")
- col.prop(tex, "use_rgb_to_intensity")
- # color is used on gray-scale textures even when use_rgb_to_intensity is disabled.
+ # Color is used on gray-scale textures
col.prop(tex, "color", text="")
- col = flow.column()
- col.prop(tex, "invert", text="Negative")
- col.prop(tex, "use_stencil")
-
class TextureColorsPoll:
@classmethod