Question

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

Was it helpful?

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.

OTHER TIPS

According to your screen grabs you are using bitmap font right? If so,

  1. Select texture used by that font
  2. In Inspector select texture type as GUI

This will remove compression. Also make sure your Max Size isnt smaller than texture

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top