public static enum BloomFilter.GlowMode extends java.lang.Enum<BloomFilter.GlowMode>
| Enum Constant and Description | 
|---|
Objects
Apply bloom only to objects that have a glow map or a glow color. 
 | 
Scene
Apply bloom filter to bright areas in the scene. 
 | 
SceneAndObjects
Apply bloom to both bright parts of the scene and objects with glow map. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static BloomFilter.GlowMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static BloomFilter.GlowMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BloomFilter.GlowMode Scene
public static final BloomFilter.GlowMode Objects
public static final BloomFilter.GlowMode SceneAndObjects
public static BloomFilter.GlowMode[] values()
for (BloomFilter.GlowMode c : BloomFilter.GlowMode.values()) System.out.println(c);
public static BloomFilter.GlowMode 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