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:
authorJiri Hnidek <jiri.hnidek@tul.cz>2004-12-12 18:28:38 +0300
committerJiri Hnidek <jiri.hnidek@tul.cz>2004-12-12 18:28:38 +0300
commit7e4daad9fae431ff681186a95cb96a79531c7724 (patch)
treed4223f325277bce9fcf547321bce7bac8ce1fc45
parent20f463234015c72ef0d866128b944221719487c4 (diff)
- bug fix reported by LetterRip at IRC (just typo: expant isn't expand)
-rw-r--r--release/scripts/obj_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/obj_import.py b/release/scripts/obj_import.py
index c08a1d07141..2750625fd81 100644
--- a/release/scripts/obj_import.py
+++ b/release/scripts/obj_import.py
@@ -406,7 +406,7 @@ def load_obj(file):
# UV MAPPING
if fHasUV:
- f.uv.extent([uvMapList[ vtIdxLs[0] ], uvMapList[ vtIdxLs[i+1] ], uvMapList[ vtIdxLs[i+2] ]])
+ f.uv.extend([uvMapList[ vtIdxLs[0] ], uvMapList[ vtIdxLs[i+1] ], uvMapList[ vtIdxLs[i+2] ]])
if f.v > 0:
f = applyMat(meshList[objectName][0], f, currentMat)