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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-09-18 19:48:24 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-09-18 19:48:24 +0400
commita30a8179331d689c9e599fb9a530c0b6b155f689 (patch)
tree8c80709ef0cb2d5e7221c85a66d3d496f5963973 /source
parentb6631b8be74070562b4eb2c4230c7b6ffab92f4b (diff)
UVProject modifier was still requiring old tesselated UV data instead of new poly/loop ones.
Diffstat (limited to 'source')
-rw-r--r--source/blender/modifiers/intern/MOD_uvproject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index b6539f4b028..ad1e2a464a8 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -93,7 +93,7 @@ static CustomDataMask requiredDataMask(Object *UNUSED(ob), ModifierData *UNUSED(
CustomDataMask dataMask = 0;
/* ask for UV coordinates */
- dataMask |= CD_MASK_MTFACE;
+ dataMask |= CD_MLOOPUV | CD_MTEXPOLY;
return dataMask;
}