Material applied to a cube appears to change direction

Hi, I am a newbie to Unity, so apologise up front for what may seem like a simple question. I am using Unity 5, on a Windows 7 Laptop.

I have a Texture, that is bricks.

I have created a Material in Unity using the brick Texture.

Its not what I want to do, but to demonstrate the issue, I have created a cube, and I have applied the Material to the Cube.

54987-capture.png

The cube is level to the ground, rotated to 100 degrees on the Y so we can see two sides. As you can see, the bricks on the left hand panel are level, and correct, but those on the right hand panel have rotated. I have tried using both Texture and Material and experience the same problem.

The reality of what I am doing is to apply my Texture/Material to a building, and what I see is the same symptom where the brick direction changes each time the wall goes through a 90 degree turn.

I am sure there is a simple (ish) answer, can anyone help ?

Cheers

Craig

What’s going on is that your UV set is aligned so that the square face on the left is correct but the face on the right is rotated 90 degrees in your UV space so that it’s mapping the vertices in the wrong corners of your texture. To fix it just go in and find that square face in a modeling package and rotate the individual face on the UV editor so that it aligns correctly with your model.

Thanks @cjdev I will see what I can work out from here then.