Ejemplo n.º 1
0
 @Override
 public void drawString(GLEx g, String string, float tx, float ty, float angle, LColor c) {
   if (c == null || c.a <= 0.01) {
     return;
   }
   if (StringUtils.isEmpty(string)) {
     return;
   }
   LSTRDictionary.drawString(g, this, string, _offset.x + tx, _offset.y + ty, angle, c);
 }