Apollo
Developers
Mods
Waila

WAILA

What am I looking at?

Integration

How to toggle the mod

public void toggleWAILAExample(Player viewer, boolean value) {
    Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
    apolloPlayerOpt.ifPresent(apolloPlayer -> this.modSettingModule.getOptions().set(apolloPlayer, ModWaila.ENABLED, value));
}

Available options

  • ENABLED

    • Config Key: enabled
    • Values
      • Type: Boolean
      • Default: false
  • SCALE

    • Config Key: scale
    • Values
      • Type: Float
      • Default: 1.0F
      • Minimum: 0.5F
      • Maximum: 1.5F
  • SHOW_ENTITIES

    • Config Key: show-entities
    • Values
      • Type: Boolean
      • Default: true
  • SHOW_COSMETICS

    • Config Key: show-cosmetics
    • Values
      • Type: Boolean
      • Default: true
  • TEXT_SHADOW

    • Config Key: text-shadow
    • Values
      • Type: Boolean
      • Default: true
  • BACKGROUND

    • Config Key: background
    • Values
      • Type: Boolean
      • Default: true
  • BORDER

    • Config Key: border
    • Values
      • Type: Boolean
      • Default: false
  • BORDER_THICKNESS

    • Config Key: border-thickness
    • Values
      • Type: Float
      • Default: 0.5F
      • Minimum: 0.5F
      • Maximum: 3.0F
  • TEXT_COLOR

    • Config Key: text-color
    • Values
      • Type: String
      • Default: #FFFFFFFF
  • BACKGROUND_COLOR

    • Config Key: background-color
    • Values
      • Type: String
      • Default: #80000000
  • BORDER_COLOR

    • Config Key: border-color
    • Values
      • Type: String
      • Default: #9F000000
  • VERTICAL_SPACING

    • Config Key: vertical-spacing
    • Values
      • Type: Integer
      • Default: 3
      • Minimum: 1
      • Maximum: 10
  • HORIZONTAL_SPACING

    • Config Key: horizontal-spacing
    • Values
      • Type: Integer
      • Default: 3
      • Minimum: 1
      • Maximum: 10