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>2008-10-15 03:43:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-10-15 03:43:08 +0400
commit58ce460cf72a7af5c43b0df8add8c21f2f3e80ab (patch)
tree2520c70e092910f456322064c8b794bc6c6ac732 /release
parent8fcaa1782ddd9d7fecc2c8a3549c4250aa2ef91d (diff)
vrml exporting with images was broken.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/vrml97_export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/vrml97_export.py b/release/scripts/vrml97_export.py
index db21cabe14f..bd1a35f7c3b 100644
--- a/release/scripts/vrml97_export.py
+++ b/release/scripts/vrml97_export.py
@@ -639,7 +639,7 @@ class VRML2Export:
# Check if any faces the material or image
for face in me.faces:
if (matnum == -1):
- if (f.image == image):
+ if (face.image == image):
return True
elif (image == None):
if (face.mat == matnum):