-
Methods in net.minecraft.client.font with parameters of type CharacterVisitor
Modifier and Type |
Method |
Description |
static boolean |
TextVisitFactory.visitBackwards(String text,
Style style,
CharacterVisitor visitor) |
Visits the code points of a string in backward (right to left) direction.
|
static boolean |
TextVisitFactory.visitFormatted(String text,
int startIndex,
Style style,
CharacterVisitor visitor) |
Visits the code points of a string, applying the formatting codes within.
|
static boolean |
TextVisitFactory.visitFormatted(String text,
int startIndex,
Style startingStyle,
Style resetStyle,
CharacterVisitor visitor) |
Visits the code points of a string, applying the formatting codes within.
|
static boolean |
TextVisitFactory.visitFormatted(String text,
Style style,
CharacterVisitor visitor) |
Visits the code points of a string, applying the formatting codes within.
|
static boolean |
TextVisitFactory.visitFormatted(StringVisitable text,
Style style,
CharacterVisitor visitor) |
Visits the code points for every literal string and the formatting codes
supplied by the renderable.
|
static boolean |
TextVisitFactory.visitForwards(String text,
Style style,
CharacterVisitor visitor) |
Visits the code points of a string in forward (left to right) direction.
|
private static boolean |
TextVisitFactory.visitRegularCharacter(Style style,
CharacterVisitor visitor,
int index,
char c) |
|
-