really weird font problem

i just downloaded unity 5 and the font in the editor is very unclear, if i stand up and look down at the monitor from a steep angle it looks better, at first i thought it was a problem with my monitor but every other program looks right.

Any ideas`? This is giving me a headache.

I’m assuming you’re using Unity UI text? The quick fix for that is setting the Transform scale down and the Text size up to compensate. This will be a little more expensive on the GPU, but the text will be more clear and less pixelated.

The reason for this is that text is rendered onto another texture before it’s applied to the screen. Scaling the object down and increasing the text size (as well as stretching the RectTransform width and height) will make the texture larger so you have more pixels to work with, thus allowing greater detail. More pixels to render = more work for GPU, but it’s not enough of a performance hit to worry about it (unless you have a TON of text… like really, a ton).

EDIT: If that’s not your problem, please post a screenshot or describe the problem in more detail