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:
Diffstat (limited to 'release/scripts/object_find.py')
-rw-r--r--release/scripts/object_find.py26
1 files changed, 20 insertions, 6 deletions
diff --git a/release/scripts/object_find.py b/release/scripts/object_find.py
index 0cfd6ad1d92..f12af07e3e4 100644
--- a/release/scripts/object_find.py
+++ b/release/scripts/object_find.py
@@ -61,8 +61,20 @@ def get_object_images(ob):
me.activeUVLayer = orig_uvlayer
+
+ # Now get material images
+ for mat in me.materials:
+ if mat:
+ for mtex in mat.getTextures():
+ if mtex:
+ tex = mtex.tex
+ i = tex.getImage()
+ if i: unique_images[i.name] = i
+
return unique_images.values()
+
+
# Todo, support other object types, materials
return []
@@ -118,7 +130,7 @@ def main():
def activate(ob, scn):
bpy.data.scenes.active = scn
scn.objects.selected = []
- scn.Layers = ob.Layers
+ scn.Layers = ob.Layers & (1<<20)-1
ob.sel = 1
def name_cmp(name_search, name_found):
@@ -195,11 +207,13 @@ def main():
activate(ob, scn)
return
if NAME_TEXTURE:
- for tex in mat.getTextures():
- if tex:
- if name_cmp(NAME_MATERIAL, tex.name):
- activate(ob, scn)
- return
+ for mtex in mat.getTextures():
+ if mtex:
+ tex = mtex.tex
+ if tex:
+ if name_cmp(NAME_TEXTURE, tex.name):
+ activate(ob, scn)
+ return
Draw.PupMenu('No Objects Found')