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>2021-08-24 11:16:23 +0300
committerJeroen Bakker <jeroen@blender.org>2021-08-30 12:33:59 +0300
commit06317ce957212c8aff1415bba57102acd2c923c9 (patch)
tree5d2847b49776bff5118d467eee8c88ec28dff5a3
parent161e90f7ac51a3f3e1b4a9685caf9cd5d559bbf8 (diff)
Fix invalid mask use for the UV-project modifier
Mistake in a30a8179331d689c9e599fb9a530c0b6b155f689.
-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 242f31b6434..f87849add1a 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -60,7 +60,7 @@ static void requiredDataMask(Object *UNUSED(ob),
CustomData_MeshMasks *r_cddata_masks)
{
/* ask for UV coordinates */
- r_cddata_masks->lmask |= CD_MLOOPUV;
+ r_cddata_masks->lmask |= CD_MASK_MLOOPUV;
}
static void foreachObjectLink(ModifierData *md, Object *ob, ObjectWalkFunc walk, void *userData)