public static enum MergedFOV.MergeType extends java.lang.Enum<MergedFOV.MergeType>
Enum Constant and Description |
---|
AND
The weight will be used to average out all light maps, but if any
light map shows a cell to have no light then it will be marked as
unlit.
|
MAXIMUM
The maximum light from the light maps will be used.
|
MINIMUM
The minimum light from the light maps will be used.
|
WEIGHTED_AVERAGE
The weight will be used to average out all light maps.
|
Modifier and Type | Method and Description |
---|---|
static MergedFOV.MergeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MergedFOV.MergeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergedFOV.MergeType WEIGHTED_AVERAGE
public static final MergedFOV.MergeType AND
public static final MergedFOV.MergeType MAXIMUM
public static final MergedFOV.MergeType MINIMUM
public static MergedFOV.MergeType[] values()
for (MergedFOV.MergeType c : MergedFOV.MergeType.values()) System.out.println(c);
public static MergedFOV.MergeType 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