A very simple visual effect in the style of classic arcade machines. It can be used for header screens or to show the progress score, or even as a count down counter.
The package is available on the openupm registry. You can install it via openupm-cli.
openupm add com.hww.xipixeltexteffect
You can also install via git url by adding this entry in your manifest.json
"com.hww.xicore": "https://github.com/hww/XiPixelTextEffect.git#upm"
pixelTexts.SetText("Hello");
pixelTexts.Animate(PixelText.EAnmiation.MakeVisible);
yield return new WaitForSeconds(3);
pixelTexts.Animate(PixelText.EAnmiation.MakeInvisible);