com.badlogic.gdx.assets.loaders
Class BitmapFontLoader.BitmapFontParameter

java.lang.Object
  extended by com.badlogic.gdx.assets.AssetLoaderParameters<BitmapFont>
      extended by com.badlogic.gdx.assets.loaders.BitmapFontLoader.BitmapFontParameter
Enclosing class:
BitmapFontLoader

public static class BitmapFontLoader.BitmapFontParameter
extends AssetLoaderParameters<BitmapFont>

Parameter to be passed to AssetManager.load(String, Class, AssetLoaderParameters) if additional configuration is necessary for the BitmapFont.

Author:
mzechner

Nested Class Summary
 
Nested classes/interfaces inherited from class com.badlogic.gdx.assets.AssetLoaderParameters
AssetLoaderParameters.LoadedCallback
 
Field Summary
 BitmapFont.BitmapFontData bitmapFontData
          optional BitmapFontData to be used instead of loading the texture directly.
 boolean flip
          whether to flipY the font or not
 Texture.TextureFilter maxFilter
          the maximum filter to be used for the backing texture
 Texture.TextureFilter minFilter
          the minimum filter to be used for the backing texture
 
Fields inherited from class com.badlogic.gdx.assets.AssetLoaderParameters
loadedCallback
 
Constructor Summary
BitmapFontLoader.BitmapFontParameter()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

flip

public boolean flip
whether to flipY the font or not


minFilter

public Texture.TextureFilter minFilter
the minimum filter to be used for the backing texture


maxFilter

public Texture.TextureFilter maxFilter
the maximum filter to be used for the backing texture


bitmapFontData

public BitmapFont.BitmapFontData bitmapFontData
optional BitmapFontData to be used instead of loading the texture directly. Use this if your font is embedded in a skin.

Constructor Detail

BitmapFontLoader.BitmapFontParameter

public BitmapFontLoader.BitmapFontParameter()


Copyright © 2013. All Rights Reserved.