Class PlayerCustomHudWrapper
java.lang.Object
dev.lone.itemsadder.api.FontImages.PlayerHudWrapper
dev.lone.itemsadder.api.FontImages.PlayerQuantityHudWrapper
dev.lone.itemsadder.api.FontImages.PlayerCustomHudWrapper
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 Summary
ConstructorsConstructorDescriptionPlayerCustomHudWrapper
(PlayerHudsHolderWrapper playerHUDsHolderWrapper, String namespacedID) Object representing a container for the custom HUD of a particular player. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addFontImage
(FontImageWrapper fontImageWrapper) Add a font_image at the end of this HUD.void
addFontImageToIndex
(FontImageWrapper fontImageWrapper, int index) Adds a font_image to this HUD at a particular index.void
Removes all the font_imaged from this HUD and sends the change to the client.int
Get total amount of font images in this HUD.void
removeFontImageByIndex
(int index) Remove a font_image from this HUD at a particular index.void
setFontImages
(List<FontImageWrapper> fontImageWrappers) Set font images of this HUD overwriting the current ones.Methods inherited from class dev.lone.itemsadder.api.FontImages.PlayerQuantityHudWrapper
getFloatValue, getInternal, setFloatValue
Methods inherited from class dev.lone.itemsadder.api.FontImages.PlayerHudWrapper
exists, getInitialOffsetX, getNamespacedID, getOffsetX, isVisible, setOffsetX, setVisible
-
Constructor Details
-
PlayerCustomHudWrapper
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 formatnamespace: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
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
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
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.
-