Class net.minecraft.client.font.MultilineText

This description should be content pulled from the first comments of a lua file.

Static Fields

userdata, MultilineText MultilineText.EMPTY This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Static Methods

MultilineText.create(renderer, texts) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
MultilineText.create(renderer, text, width) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
MultilineText.create(renderer, lines) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
MultilineText.create(renderer, text, width, maxLines) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
MultilineText.createFromTexts(renderer, texts) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Instance Methods

instance:count() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:draw(matrices, x, y, lineHeight, color) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:drawCenterWithShadow(matrices, x, y, lineHeight, color) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:drawCenterWithShadow(matrices, x, y) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:drawWithShadow(matrices, x, y, lineHeight, color) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:fillBackground(matrices, centerX, centerY, lineHeight, padding, color) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"


Static Methods

MultilineText.create(renderer, texts)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • renderer userdata, TextRenderer This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • texts userdata, Text[] This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MultilineText This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
MultilineText.create(renderer, text, width)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • renderer userdata, TextRenderer This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • text userdata, StringVisitable This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • width int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MultilineText This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
MultilineText.create(renderer, lines)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • renderer userdata, TextRenderer This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • lines userdata, List This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MultilineText This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
MultilineText.create(renderer, text, width, maxLines)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • renderer userdata, TextRenderer This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • text userdata, StringVisitable This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • width int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • maxLines int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MultilineText This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
MultilineText.createFromTexts(renderer, texts)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • renderer userdata, TextRenderer This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • texts userdata, List This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MultilineText This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"

Instance Methods

instance:count()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:draw(matrices, x, y, lineHeight, color)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • matrices userdata, MatrixStack This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • x int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • y int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • lineHeight int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • color int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:drawCenterWithShadow(matrices, x, y, lineHeight, color)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • matrices userdata, MatrixStack This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • x int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • y int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • lineHeight int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • color int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:drawCenterWithShadow(matrices, x, y)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • matrices userdata, MatrixStack This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • x int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • y int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:drawWithShadow(matrices, x, y, lineHeight, color)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • matrices userdata, MatrixStack This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • x int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • y int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • lineHeight int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • color int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:fillBackground(matrices, centerX, centerY, lineHeight, padding, color)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • matrices userdata, MatrixStack This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • centerX int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • centerY int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • lineHeight int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • padding int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • color int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"