Scaling Of Text Lables Makes Text Labels Blurry?

Hi,

I looked around, but could not solve the below issue:
When we scale up text Labels they are blurry?
How do we remove the blur?

See below screenshot:
(“10000” and button texts are scaled up and blurry)

Thanks!

J.

If (as I guess ) you are using fonts with output “Bitmap” it is actually creating an atlas (just like any atlas for sprites etc). Meaning if you create small letters in the atlas and scale them up they will be blurred just like scaling up sprites that has small images in the atlas.
If you know you want to use big sharp symbols in the fonts either you must increase the Font size in the font object OR you can choose to use Distancefonts instead that simplified is a mix of bitmap and vectors. You can read about it all in the manual how to achieve this.

Good luck

5 Likes