From 2a2aa6abd0ae45133b083368be4bee77a1a420c4 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Thu, 7 May 2020 12:34:13 +0200 Subject: Fix T75793: Mirror modifier UV flip only works on first UDIM Tile Was flipping around the 0-1 range, now (optionally) flip around each tile. Also added this option for BMesh bmo_mirror. Reviewed By: campbellbarton Maniphest Tasks: T75793 Differential Revision: https://developer.blender.org/D7460 --- source/blender/makesdna/DNA_modifier_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index 9e58d7df042..24e5aa496b9 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -363,6 +363,7 @@ enum { MOD_MIR_BISECT_FLIP_AXIS_X = (1 << 11), MOD_MIR_BISECT_FLIP_AXIS_Y = (1 << 12), MOD_MIR_BISECT_FLIP_AXIS_Z = (1 << 13), + MOD_MIR_MIRROR_UDIM = (1 << 14), }; typedef struct EdgeSplitModifierData { -- cgit v1.2.3