Inheritance: PixelFarm.Drawing.Fonts.ActualFont
Esempio n. 1
0
 public void RegisterFont(RequestFont f, TextureFont textureFont)
 {
     registerFonts.Add(f.FontKey, textureFont);
 }
Esempio n. 2
0
 public override ActualFont GetFontAtPointsSize(float pointSize)
 {
     TextureFont t = new TextureFont(this, pointSize);
     return t;
 }
 internal void SetCurrentTextureFont(TextureFont textureFont)
 {
     _currentTextureFont = textureFont;
 }