Enum Class RenderQueue.ShadowMode

java.lang.Object
java.lang.Enum<RenderQueue.ShadowMode>
com.jme3.renderer.queue.RenderQueue.ShadowMode
All Implemented Interfaces:
Serializable, Comparable<RenderQueue.ShadowMode>, Constable
Enclosing class:
RenderQueue

public static enum RenderQueue.ShadowMode extends Enum<RenderQueue.ShadowMode>
ShadowMode is a marker used to specify how shadow effects should treat the spatial.
  • Enum Constant Details Link icon

    • Off Link icon

      public static final RenderQueue.ShadowMode Off
      Disable both shadow casting and shadow receiving for this spatial. Generally used for special effects like particle emitters.
    • Cast Link icon

      public static final RenderQueue.ShadowMode Cast
      Enable casting of shadows but not receiving them.
    • Receive Link icon

      public static final RenderQueue.ShadowMode Receive
      Enable receiving of shadows but not casting them.
    • CastAndReceive Link icon

      public static final RenderQueue.ShadowMode CastAndReceive
      Enable both receiving and casting of shadows.
    • Inherit Link icon

      public static final RenderQueue.ShadowMode Inherit
      Inherit the ShadowMode from the parent node.
  • Method Details Link icon

    • values Link icon

      public static RenderQueue.ShadowMode[] 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 Link icon

      public static RenderQueue.ShadowMode 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