Apollo
Developers
Mods
Memory

Memory Usage

Displays your total and free memory usage.

Integration

How to toggle the mod

public void toggleMemoryUsageExample(Player viewer, boolean value) {
    Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
    apolloPlayerOpt.ifPresent(apolloPlayer -> this.modSettingModule.getOptions().set(apolloPlayer, ModMemory.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
  • TEXT_SHADOW

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

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

    • If this is disabled the background will change size with the text.
    • Config Key: static-background-width
    • Values
      • Type: Boolean
      • Default: true
  • BACKGROUND_WIDTH

    • Config Key: background-width
    • Values
      • Type: Integer
      • Default: 56
      • Minimum: 46
      • Maximum: 62
  • BACKGROUND_HEIGHT

    • Config Key: background-height
    • Values
      • Type: Integer
      • Default: 18
      • Minimum: 10
      • Maximum: 22
  • BRACKETS

    • Config Key: brackets
    • 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: #6F000000
  • BORDER_COLOR

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

    • Config Key: color-based-on-usage
    • Values
      • Type: Boolean
      • Default: false
  • LOW_MEM_COLOR

    • Config Key: low-mem-color
    • Values
      • Type: String
      • Default: #FFFF0000
  • MED_MEM_COLOR

    • Config Key: med-mem-color
    • Values
      • Type: String
      • Default: #FFFFFF00
  • HIGH_MEM_COLOR

    • Config Key: high-mem-color
    • Values
      • Type: String
      • Default: #FF00FF00