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:
authorThomas Dinges <blender@dingto.org>2010-08-17 12:56:47 +0400
committerThomas Dinges <blender@dingto.org>2010-08-17 12:56:47 +0400
commit2e2592127e8cd63a1bbae1e6c2409a4774da902d (patch)
treee23954a29e5e51e15ccf57fedd733c0d29fa0010 /release
parente0c27915087454276f55523062884ca52acd7942 (diff)
2.5 Texture Panels:
* Removed "Plugin" Texture Type from the Interface as it is not implemented in 2.5 atm.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_texture.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index cf7554a7b10..2306510271a 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -680,19 +680,6 @@ class TEXTURE_PT_image_mapping(TextureTypePanel, bpy.types.Panel):
col.prop(tex, "crop_max_y", text="Y")
-class TEXTURE_PT_plugin(TextureTypePanel, bpy.types.Panel):
- bl_label = "Plugin"
- tex_type = 'PLUGIN'
- COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
-
- def draw(self, context):
- layout = self.layout
-
- # tex = context.texture
-
- layout.label(text="Nothing yet")
-
-
class TEXTURE_PT_envmap(TextureTypePanel, bpy.types.Panel):
bl_label = "Environment Map"
tex_type = 'ENVIRONMENT_MAP'