public static enum SkyFactory.EnvMapType extends java.lang.Enum<SkyFactory.EnvMapType>
Enum Constant and Description |
---|
CubeMap
The env map is a cube map see
TextureCubeMap or 6 separate images that form a cube map
The texture is either a TextureCubeMap or 6 Texture2D . |
EquirectMap
The env map is an Equirectangular map.
|
SphereMap
The env map is a Sphere map.
|
Modifier and Type | Method and Description |
---|---|
static SkyFactory.EnvMapType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SkyFactory.EnvMapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkyFactory.EnvMapType CubeMap
TextureCubeMap
or 6 separate images that form a cube map
The texture is either a TextureCubeMap
or 6 Texture2D
.
In the latter case, a TextureCubeMap is build from the 6 2d maps.public static final SkyFactory.EnvMapType SphereMap
public static final SkyFactory.EnvMapType EquirectMap
public static SkyFactory.EnvMapType[] values()
for (SkyFactory.EnvMapType c : SkyFactory.EnvMapType.values()) System.out.println(c);
public static SkyFactory.EnvMapType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null