Enum Class VoiceWallMode

java.lang.Object
java.lang.Enum<VoiceWallMode>
fr.dreamin.dreamvoice.api.wall.model.VoiceWallMode
All Implemented Interfaces:
Serializable, Comparable<VoiceWallMode>, Constable

public enum VoiceWallMode extends Enum<VoiceWallMode>
Operating mode for VoiceWall sound occlusion and acoustic physics.
  • Enum Constant Details

    • STRICT_BLOCK

      public static final VoiceWallMode STRICT_BLOCK
      Complete sound cut-off (100% blocked) whenever a solid obstacle separates players without an open air path. Ideal for Danganronpa, Murder mystery, and RP investigation games with isolated rooms.
    • REALISTIC

      public static final VoiceWallMode REALISTIC
      Realistic acoustic attenuation based on block material categories (wood, stone, glass, metal, etc.).
    • OFF

      public static final VoiceWallMode OFF
      Wall occlusion disabled (standard Simple Voice Chat behavior).
  • Method Details

    • values

      public static VoiceWallMode[] 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 VoiceWallMode 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