public void AddFallback(FieldFont font, string name, float scale) { var msdf = new MSDFFont(font); msdf.VectorScale = scale; Fallbacks.Add(msdf); }
public MSDFGlyph(FieldGlyph glyph, MSDFFont font) { Glyph = glyph; Font = font; }
public MSDFRenderGroup(MSDFFont font) { Font = font; Indices = new List <int>(); Vertices = new List <MSDFFontVert>(); }