Interface IGuiGraphicsExtension
- All Known Implementing Classes:
GuiGraphics
public interface IGuiGraphicsExtension
Extension interface for
GuiGraphics
.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault void
blitInscribed
(ResourceLocation texture, int x, int y, int boundsWidth, int boundsHeight, int rectWidth, int rectHeight) Draws a textured box of any size (smallest size is borderSize * 2 square) based on a fixed size textured box with continuous borders and filler.default void
blitInscribed
(ResourceLocation texture, int x, int y, int boundsWidth, int boundsHeight, int rectWidth, int rectHeight, boolean centerX, boolean centerY) default int
drawScrollingString
(Font font, Component text, int minX, int maxX, int y, int color) Draws a left-aligned string, with a scrolling effect if the string is too long.default int
getColorFromFormattingCharacter
(char c, boolean isLighter) private GuiGraphics
self()
-
Field Details
-
DEFAULT_BACKGROUND_COLOR
static final int DEFAULT_BACKGROUND_COLOR- See Also:
-
DEFAULT_BORDER_COLOR_START
static final int DEFAULT_BORDER_COLOR_START- See Also:
-
DEFAULT_BORDER_COLOR_END
static final int DEFAULT_BORDER_COLOR_END- See Also:
-
UNDO_CHAR
- See Also:
-
RESET_CHAR
- See Also:
-
VALID
- See Also:
-
INVALID
- See Also:
-
TEXT_COLOR_CODES
static final int[] TEXT_COLOR_CODES
-
-
Method Details
-
self
-
getColorFromFormattingCharacter
default int getColorFromFormattingCharacter(char c, boolean isLighter) -
drawScrollingString
Draws a left-aligned string, with a scrolling effect if the string is too long.- Returns:
- the rendered width of the string, never more than
maxX - minX
-
blitInscribed
default void blitInscribed(ResourceLocation texture, int x, int y, int boundsWidth, int boundsHeight, int rectWidth, int rectHeight) Draws a textured box of any size (smallest size is borderSize * 2 square) based on a fixed size textured box with continuous borders and filler.- Parameters:
texture
- the ResourceLocation object that contains the desired imagex
- x-axis offsety
- y-axis offsetu
- bound resource location image x offsetv
- bound resource location image y offsetwidth
- the desired box widthheight
- the desired box heighttextureWidth
- the width of the box texture in the resource location imagetextureHeight
- the height of the box texture in the resource location imagetopBorder
- the size of the box's top borderbottomBorder
- the size of the box's bottom borderleftBorder
- the size of the box's left borderrightBorder
- the size of the box's right border
-
blitInscribed
default void blitInscribed(ResourceLocation texture, int x, int y, int boundsWidth, int boundsHeight, int rectWidth, int rectHeight, boolean centerX, boolean centerY)
-