Enum Class BloomFilter.GlowMode

java.lang.Object
java.lang.Enum<BloomFilter.GlowMode>
com.jme3.post.filters.BloomFilter.GlowMode
All Implemented Interfaces:
Serializable, Comparable<BloomFilter.GlowMode>, Constable
Enclosing class:
BloomFilter

public static enum BloomFilter.GlowMode extends Enum<BloomFilter.GlowMode>
GlowMode specifies if the glow will be applied to the whole scene or to objects that have a glow color or a glow map
  • Enum Constant Details

    • Scene

      public static final BloomFilter.GlowMode Scene
      Apply bloom filter to bright areas in the scene.
    • Objects

      public static final BloomFilter.GlowMode Objects
      Apply bloom only to objects that have a glow map or a glow color.
    • SceneAndObjects

      public static final BloomFilter.GlowMode SceneAndObjects
      Apply bloom to both bright parts of the scene and objects with glow map.
  • Method Details

    • values

      public static BloomFilter.GlowMode[] 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

      public static BloomFilter.GlowMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null