BitmapFont
Introduction
Code Example: Loading a BitmapFont From File


Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
var bitmapFont = new BitmapFont("Fonts/Font32Batang.fnt");
var text = new TextRuntime();
text.AddToRoot();
text.BitmapFont = bitmapFont;
text.Text = "Hello I am a Text instance";