Skip to content

Instantly share code, notes, and snippets.

@empika
Created November 26, 2019 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save empika/c32d460930c03059233b06f9d36036bf to your computer and use it in GitHub Desktop.
Save empika/c32d460930c03059233b06f9d36036bf to your computer and use it in GitHub Desktop.
SetFontPixelly.cs
public class SetFontPixelly : MonoBehaviour
{
public List<Font> Fonts = new List<Font>();
public void Start()
{
foreach (Font font in Fonts)
{
font.material.mainTexture.filterMode = FilterMode.Point;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment