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>2011-11-24 09:33:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-24 09:33:22 +0400
commitf28fd56f8f0d539e043924343683885ebc293d9f (patch)
treef9db2509e7239a5872c420bfd4a08855388fa27b /source/blender/modifiers/intern/MOD_uvproject.c
parentb6aa3073685f3f72b240cf6b82a93678316adba7 (diff)
parentdf22957bfce70b704b6b93958814c1ca8b2211f5 (diff)
svn merge ^/trunk/blender -r42095:42116
Diffstat (limited to 'source/blender/modifiers/intern/MOD_uvproject.c')
-rw-r--r--source/blender/modifiers/intern/MOD_uvproject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index de43bdb8131..18f39fa6c2f 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -170,7 +170,7 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd,
if(num_projectors == 0) return dm;
- /* make sure there are UV layers available */
+ /* make sure there are UV Maps available */
if(!CustomData_has_layer(&dm->faceData, CD_MTFACE)) return dm;
@@ -259,7 +259,7 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd,
mul_mat3_m4_v3(projectors[i].ob->obmat, projectors[i].normal);
}
- /* make sure we are not modifying the original UV layer */
+ /* make sure we are not modifying the original UV map */
tface = CustomData_duplicate_referenced_layer_named(&dm->faceData,
CD_MTFACE, uvname);