Class PlayerCustomHudWrapper


public class PlayerCustomHudWrapper extends PlayerQuantityHudWrapper
Class representing a container for the custom HUD of a particular player. Its textures are handled by the developer which is making use of this class.
  • Constructor Details

    • PlayerCustomHudWrapper

      public PlayerCustomHudWrapper(PlayerHudsHolderWrapper playerHUDsHolderWrapper, String namespacedID)
      Object representing a container for the custom HUD of a particular player. Its textures are handled by the developer which is making use of this object.
      Parameters:
      playerHUDsHolderWrapper - Object which holds all HUDs of a player.
      namespacedID - Namespace and ID in the format namespace:id of the HUD.
  • Method Details

    • clearFontImagesAndRefresh

      public void clearFontImagesAndRefresh()
      Removes all the font_imaged from this HUD and sends the change to the client.
    • setFontImages

      public void setFontImages(List<FontImageWrapper> fontImageWrappers)
      Set font images of this HUD overwriting the current ones.
      Parameters:
      fontImageWrappers - Font images to be set to this HUD overwriting the current ones.
    • removeFontImageByIndex

      public void removeFontImageByIndex(int index)
      Remove a font_image from this HUD at a particular index.
      Parameters:
      index - Index of the font_image.
    • addFontImageToIndex

      public void addFontImageToIndex(FontImageWrapper fontImageWrapper, int index)
      Adds a font_image to this HUD at a particular index.
      Parameters:
      fontImageWrapper - The font_image to add.
      index - Index of where to add the font_image.
    • addFontImage

      public void addFontImage(FontImageWrapper fontImageWrapper)
      Add a font_image at the end of this HUD.
      Parameters:
      fontImageWrapper - The font_image to add.
    • getFontImagesCount

      public int getFontImagesCount()
      Get total amount of font images in this HUD.
      Returns:
      Total amount of font images in this HUD.