Package com.jme3.texture
Class TextureCubeMap
java.lang.Object
com.jme3.texture.Texture
com.jme3.texture.TextureCubeMap
- All Implemented Interfaces:
CloneableSmartAsset
,Savable
,Cloneable
Describes a cubemap texture.
The image specified by setImage must contain 6 data units,
each data contains a 2D image representing a cube's face.
The slices are specified in this order:
0 -- Positive X (+x)
1 -- Negative X (-x)
2 -- Positive Y (+y)
3 -- Negative Y (-y)
4 -- Positive Z (+z)
5 -- Negative Z (-z)
0 -- Positive X (+x)
1 -- Negative X (-x)
2 -- Positive Y (+y)
3 -- Negative Y (-y)
4 -- Positive Z (+z)
5 -- Negative Z (-z)
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Face of the Cubemap as described by its directional offset from the origin.Nested classes/interfaces inherited from class com.jme3.texture.Texture
Texture.MagFilter, Texture.MinFilter, Texture.ShadowCompareMode, Texture.Type, Texture.WrapAxis, Texture.WrapMode
-
Constructor Summary
ConstructorDescriptionTextureCubeMap
(int width, int height, Image.Format format) TextureCubeMap
(Image img) -
Method Summary
Modifier and TypeMethodDescriptioncreateSimpleClone
(Texture rVal) Retrieve a basic clone of this Texture (ie, clone everything but the image data, which is shared)boolean
getType()
getWrap
(Texture.WrapAxis axis) getWrap
returns the wrap mode for a given coordinate axis on this texture.int
hashCode()
void
read
(JmeImporter importer) void
setWrap
(Texture.WrapAxis axis, Texture.WrapMode mode) setWrap
sets the wrap mode of this texture for a particular axis.void
setWrap
(Texture.WrapMode mode) setWrap
sets the wrap mode of this texture for all axis.void
write
(JmeExporter e) Methods inherited from class com.jme3.texture.Texture
clone, getAnisotropicFilter, getImage, getKey, getMagFilter, getMinFilter, getName, getShadowCompareMode, setAnisotropicFilter, setImage, setKey, setMagFilter, setMinFilter, setName, setShadowCompareMode, toString
-
Constructor Details
-
TextureCubeMap
public TextureCubeMap() -
TextureCubeMap
-
TextureCubeMap
-
-
Method Details
-
createSimpleClone
- Specified by:
createSimpleClone
in classTexture
- Returns:
- a new Texture
-
createSimpleClone
Description copied from class:Texture
Retrieve a basic clone of this Texture (ie, clone everything but the image data, which is shared)- Overrides:
createSimpleClone
in classTexture
- Parameters:
rVal
- storage for the clone (not null, modified)- Returns:
- Texture
-
setWrap
setWrap
sets the wrap mode of this texture for a particular axis.- Specified by:
setWrap
in classTexture
- Parameters:
axis
- the texture axis to apply the wrap mode to.mode
- the wrap mode for the given axis of the texture.- Throws:
IllegalArgumentException
- if axis or mode are null
-
setWrap
setWrap
sets the wrap mode of this texture for all axis.- Specified by:
setWrap
in classTexture
- Parameters:
mode
- the wrap mode for the given axis of the texture.- Throws:
IllegalArgumentException
- if mode is null
-
getWrap
getWrap
returns the wrap mode for a given coordinate axis on this texture.- Specified by:
getWrap
in classTexture
- Parameters:
axis
- the axis to return for- Returns:
- the wrap mode of the texture.
- Throws:
IllegalArgumentException
- if axis is null
-
getType
-
equals
-
hashCode
public int hashCode() -
write
- Specified by:
write
in interfaceSavable
- Overrides:
write
in classTexture
- Throws:
IOException
-
read
- Specified by:
read
in interfaceSavable
- Overrides:
read
in classTexture
- Throws:
IOException
-