Package com.badlogic.gdx.assets.loaders
Class CubemapLoader.CubemapParameter
- java.lang.Object
-
- com.badlogic.gdx.assets.AssetLoaderParameters<Cubemap>
-
- com.badlogic.gdx.assets.loaders.CubemapLoader.CubemapParameter
-
- Enclosing class:
- CubemapLoader
public static class CubemapLoader.CubemapParameter extends AssetLoaderParameters<Cubemap>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.badlogic.gdx.assets.AssetLoaderParameters
AssetLoaderParameters.LoadedCallback
-
-
Field Summary
Fields Modifier and Type Field Description CubemapcubemapThe texture to put theTextureDatain, optional.CubemapDatacubemapDataCubemapData for textures created on the fly, optional.Pixmap.Formatformatthe format of the final Texture.Texture.TextureFiltermagFilterTexture.TextureFilterminFilterTexture.TextureWrapwrapUTexture.TextureWrapwrapV-
Fields inherited from class com.badlogic.gdx.assets.AssetLoaderParameters
loadedCallback
-
-
Constructor Summary
Constructors Constructor Description CubemapParameter()
-
-
-
Field Detail
-
format
public Pixmap.Format format
the format of the final Texture. Uses the source images format if null
-
cubemap
public Cubemap cubemap
The texture to put theTextureDatain, optional.
-
cubemapData
public CubemapData cubemapData
CubemapData for textures created on the fly, optional. When set, all format and genMipMaps are ignored
-
minFilter
public Texture.TextureFilter minFilter
-
magFilter
public Texture.TextureFilter magFilter
-
wrapU
public Texture.TextureWrap wrapU
-
wrapV
public Texture.TextureWrap wrapV
-
-