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