Enum Class BlendableEntity.BlendMode
java.lang.Object
java.lang.Enum<BlendableEntity.BlendMode>
com.codingame.gameengine.module.entities.BlendableEntity.BlendMode
- All Implemented Interfaces:
Serializable
,Comparable<BlendableEntity.BlendMode>
,Constable
- Enclosing class:
- BlendableEntity<T extends Entity<?>>
The list of supported PIXI blend modes and their associated constant.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAdds pixel values of one layer with the other.Multiplies the numbers for each pixel of the top layer with the corresponding pixel for the bottom layer.No pixel blend, only the values of the top layer are kept.The values of the pixels in the two layers are inverted, multiplied, and then inverted again. -
Method Summary
Modifier and TypeMethodDescriptionstatic BlendableEntity.BlendMode
Returns the enum constant of this class with the specified name.static BlendableEntity.BlendMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL
No pixel blend, only the values of the top layer are kept. -
ADD
Adds pixel values of one layer with the other. -
MULTIPLY
Multiplies the numbers for each pixel of the top layer with the corresponding pixel for the bottom layer. The result is a darker picture. -
SCREEN
The values of the pixels in the two layers are inverted, multiplied, and then inverted again. The result is a brighter picture.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-