14

I have an object with a mirror modifier in X and Y direction. Is it possible to unwrap all the 4 quadrants as a big single UV map and then have this UV map to apply to the object as it was a single non mirrored object (Same as apply in the mirror modifier), without using the Apply button first?

I wan't to be able to edit the mesh with the Mirror modifier later on, but have the UV map seeing it as one single object.

Max Kielland
  • 1,040
  • 5
  • 12
  • 22

3 Answers3

14

Yes, this is possible (out of the box). The mirror modifier has a mirror UV option, so you can mirror either the U or V (or both) texture coordinates. So for example, you can model the left hand side of a head with the mirror modifier enabled for X and U. Then unwrap it to the left-hand side of your texture. The mirrored right-hand side of the mesh will have its UV co-ordinates on the right-hand side of the texture, so you can have something different there, e.g. a scar drawn on the texture's right cheek which appears on the right cheek of the mirrored model.

Sam Hopkins
  • 157
  • 1
  • 2
  • 1
    This should be the accepted answer - even though this does not allow mapping freely the vertices of only one side, it allows exactly what the OP asked for. – Christian Rondeau Nov 09 '15 at 02:04
4

No, this is not possible (out of the box). You will have to apply the modifier if you want a unique texture on each part of your mesh.

enter image description here

Vader
  • 14,680
  • 16
  • 74
  • 110
1

One solution would be to use the UV Project modifier.

You need to add 3 empty's, rotate one by 90 degrees in the X axis, and another one by 90 degrees in the Y axis. And thhen use these as UV Projectors; This works fine for a simple cube, but you might need something different for a more complex model.

enter image description here

someonewithpc
  • 12,381
  • 6
  • 55
  • 89