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
Nested ClassesModifier and TypeClassDescriptionstatic enumFace 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
ConstructorsConstructorDescriptionTextureCubeMap(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)booleangetType()getWrap(Texture.WrapAxis axis) getWrapreturns the wrap mode for a given coordinate axis on this texture.inthashCode()voidread(JmeImporter importer) voidsetWrap(Texture.WrapAxis axis, Texture.WrapMode mode) setWrapsets the wrap mode of this texture for a particular axis.voidsetWrap(Texture.WrapMode mode) setWrapsets the wrap mode of this texture for all axis.voidwrite(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:
createSimpleClonein classTexture- Returns:
- a new Texture
-
createSimpleClone
Description copied from class:TextureRetrieve a basic clone of this Texture (ie, clone everything but the image data, which is shared)- Overrides:
createSimpleClonein classTexture- Parameters:
rVal- storage for the clone (not null, modified)- Returns:
- Texture
-
setWrap
setWrapsets the wrap mode of this texture for a particular axis.- Specified by:
setWrapin 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
setWrapsets the wrap mode of this texture for all axis.- Specified by:
setWrapin classTexture- Parameters:
mode- the wrap mode for the given axis of the texture.- Throws:
IllegalArgumentException- if mode is null
-
getWrap
getWrapreturns the wrap mode for a given coordinate axis on this texture.- Specified by:
getWrapin 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:
writein interfaceSavable- Overrides:
writein classTexture- Throws:
IOException
-
read
- Specified by:
readin interfaceSavable- Overrides:
readin classTexture- Throws:
IOException
-