Package | Description |
---|---|
com.badlogic.gdx.graphics |
Modifier and Type | Method and Description |
---|---|
static Cubemap.CubemapSide |
Cubemap.CubemapSide.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cubemap.CubemapSide[] |
Cubemap.CubemapSide.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
TextureData |
Cubemap.getTextureData(Cubemap.CubemapSide side) |
void |
Cubemap.load(Cubemap.CubemapSide side,
FileHandle file)
Loads the texture specified using the
FileHandle and sets it to specified side,
overwriting any previous data set to that side. |
void |
Cubemap.load(Cubemap.CubemapSide side,
FileHandle file,
boolean useMipMaps)
Loads the texture specified using the
FileHandle and sets it to specified side,
overwriting any previous data set to that side. |
void |
Cubemap.load(Cubemap.CubemapSide side,
Pixmap pixmap)
Sets the specified side of this cubemap to the specified
Pixmap , overwriting any previous
data set to that side. |
void |
Cubemap.load(Cubemap.CubemapSide side,
Pixmap pixmap,
boolean useMipMaps)
Sets the specified side of this cubemap to the specified
Pixmap , overwriting any previous
data set to that side. |
void |
Cubemap.load(Cubemap.CubemapSide side,
TextureData data)
Sets the specified side of this cubemap to the specified
TextureData , overwriting any previous
data set to that side. |
protected void |
Cubemap.unsafeLoad(Cubemap.CubemapSide side,
TextureData data)
Sets the specified side of this cubemap to the specified
TextureData , overwriting any previous
data set to that side. |