diff options
| author | jussi | 2023-11-07 01:37:21 +0200 |
|---|---|---|
| committer | jussi | 2023-11-07 01:37:21 +0200 |
| commit | 28ac27fae16d5d2df6174564dde05c6064515a33 (patch) | |
| tree | 8c338c22b9b8ec220d29d00b9acb0eb83742f588 /API.md | |
| parent | 7b8ef2cd90997382dca80f5122908eb6a8e60467 (diff) | |
| download | reilua-enhanced-28ac27fae16d5d2df6174564dde05c6064515a33.tar.gz reilua-enhanced-28ac27fae16d5d2df6174564dde05c6064515a33.tar.bz2 reilua-enhanced-28ac27fae16d5d2df6174564dde05c6064515a33.zip | |
Replaced DrawTextBoxedSelectable with DrawTextBoxedTinted.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -6058,15 +6058,19 @@ Draw multiple character (codepoint) --- -> RL.DrawTextBoxed(Font font, const char *text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint ) +> mouseCharId = RL.DrawTextBoxed(Font font, string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint ) -Draw text using font inside rectangle limits. Function from raylib [text] example - Rectangle bounds +Draw text using font inside rectangle limits. Return character from mouse position. Function from raylib [text] example - Rectangle bounds. + +- Success return int --- -> RL.DrawTextBoxedSelectable( Font font, string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectTint, Color selectBackTint ) +> mouseCharId = RL.DrawTextBoxedTinted( Font font, string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tints, Color backTints ) -Draw text using font inside rectangle limits with support for text selection. Function from raylib [text] example - Rectangle bounds +Draw text using font inside rectangle limits with support for tint and background tint for each character. Return character from mouse position + +- Success return int --- |
