Search code examples
unity-game-enginengui

NGUI UILabel text blurry (Unity)


After trying to adjust several settings I am still getting blurry text in my NGUI labels. Does anyone know what the issue could be? I tried increasing the font size.

Below is a screenshot that demonstrates. Why is the NEW HIGH SCORE text not high resolution?

enter image description here

UPDATE: I turned on MakePixelPerfect but the text is still blurry: enter image description here


Solution

  • This is either a result of font scaling from a font atlas with mip-mapping set to true or it is a result of MakePixelPerfect not being set.

    Turn off mip mapping on your font atlas or make sure your labels and parent hierarchy objects run MakePixelPerfect(). Select your label and press ++. This should enforce the pixel perfect setting for you.