*
* @param scalable the new bitmap font scalable
*/
public void setBitmapFontTextureFiltered(boolean scalable){
if (MT4jSettings.getInstance().isOpenGlMode() && this.getFont() instanceof BitmapFont){
BitmapFont font = (BitmapFont)this.getFont();
IFontCharacter[] characters = font.getCharacters();
for (int i = 0; i < characters.length; i++) {
IFontCharacter fontCharacter = characters[i];
if (fontCharacter instanceof BitmapFontCharacter) {
BitmapFontCharacter bChar = (BitmapFontCharacter) fontCharacter;
bChar.setTextureFiltered(scalable);