-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CAO: Add Colored Text Sprite #8623
CAO: Add Colored Text Sprite #8623
Conversation
f3d6b09
to
85dfb37
Compare
So the current trend is to modify & migrate all Irrlicht sources to our code base? |
Maybe related: #1367 |
85dfb37
to
449e105
Compare
449e105
to
288fad9
Compare
bool parseColorString(const std::string &value, video::SColor &color, bool quiet, | ||
unsigned char default_alpha = 0xff); | ||
|
||
struct ColorContainer { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here. Struct declaration is OK in the header, but the definition should really be in string.cpp
.
What kind of color/size encoding is this? It doesn't look like anything known in Minetest. |
This PR offered by Kidscode allows to create entity sprites with native colored text.
Demo: https://www.youtube.com/watch?v=to2BMSdGwlo
Documentation
Click to expand
Declare a text sprite entity
Sample
Parameters
visual_size
: X scale, Y scalemesh
: text, border size, X padding, Y padding, X offset, Y offset, spacing, base line offsetcolors
: text top color, text bottom color, background color, border colorThe text separator is the circumflex.
The value separator is the semicolon.
Values
border size
: tells the size of the border (in character height unit)X/Y padding
: tells how much padding is added between the text and the border (in character size unit)X/Y offset
: tells how much offset is added to the text position inside the frame (in character size unit)spacing
: tells how much space is added between contiguous characters (1.0
by default)base line offset
: tells where the base line is located (from0.0
to1.0
)The actual text frame width is computed from the frame height and longest text line width.
The text can contains named or hexadecimal colors between accolades.
Hexadecimal colors start by a hash mark, and can contain 3 or 6 hexadecimal digits.
Both the top and bottom colors can be provided, by separating them with a slash character.
The text can also contain scales between accolades.
The default scale is
1.0
.Special characters can be escaped by preceding them with a backslash character.