Esempio n. 1
0
 public LuaSize measureString(LuaFont font, string text)
 {
     return new LuaSize (font.Font.MeasureString (text));
 }
Esempio n. 2
0
 public LuaSize measureString(LuaFont font, string text)
 {
     return(new LuaSize(font.Font.MeasureString(text)));
 }
Esempio n. 3
0
 public void drawString(LuaFont font, string text, int x, int y, LuaTable color)
 {
     font.Font.DrawString (Batch, text, x, y, Util.ColorFromTable(color));
 }
Esempio n. 4
0
 public void drawString(LuaFont font, string text, int x, int y, LuaTable color)
 {
     font.Font.DrawString(Batch, text, x, y, Util.ColorFromTable(color));
 }