I’m thinking of converting my text rendering from my own method to TMP mainly cause I want to add support for non latin languages so I’ve been playing around with it.
Now I’m just trying to get it rendering text as good as I have now with my text rendering but are failing.
eg I support HDR color with vertical gradients (practically all my text has vertical gradient), yet the only support for gradients AFAIKS is Color32 ugh, it looks terrible, so I’m trying to mix this with gradient with Vector4 color eg
tmp.colorGradient = new VertexGradient( colorTop, colorTop, colorBottom, colorBottom ); // color32
mp.color = col; // vector4
yet the results look crap compared to what I already do.
Are there any TMP text shader that support HDR gradients?