6

So, I'm building a TARDIS...

I'm working on the details off the side, and want to then mirror it to the other side(the one adjacent to the one already detailed), so I don't need to do the door two times. How can I do this?

stacker
  • 38,549
  • 31
  • 141
  • 243
someonewithpc
  • 12,381
  • 6
  • 55
  • 89

1 Answers1

5

You have to use an array modifier to rotate it 90 degrees, then mirror it along the X and Y axis:

array

Result:

result

CharlesL
  • 15,316
  • 7
  • 53
  • 88
  • Should the array look like this?http://imgur.com/FEY7zzB,HOPHwLj#1 And there's a problem... The sides don't merge... As shown here : http://imgur.com/FEY7zzB,HOPHwLj – someonewithpc Jun 15 '14 at 20:48
  • After posting that, I tried something and it worked. So, you need to scale the empty, by minus one (-1), along the x axis. And the rotate it by -90 degrees, along the z axis. Then increment the Merge Distance, on the array, to 0,04. – someonewithpc Jun 15 '14 at 20:54
  • @someonewithpc looks like you solved it, but just make sure to set the merge distance in the array modifier. – CharlesL Jun 15 '14 at 21:15