-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.DrawTextCodepoints
JoeStrout edited this page Apr 29, 2026
·
3 revisions
Draw multiple character (codepoints)
| Parameter | Default Value | Note |
|---|---|---|
| font | ||
| codepoints | ||
| position | [0, 0] | |
| fontSize | 20 | |
| spacing | 0 | |
| tint | BLACK |
None.
// Draw a sequence of codepoints spelling "Hi!"
font = raylib.GetFontDefault
codepoints = [72, 105, 33] // 'H', 'i', '!'
raylib.DrawTextCodepoints font, codepoints, [100, 200], 32, 2, raylib.GREEN