-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.DrawTextCodepoint
JoeStrout edited this page Apr 29, 2026
·
3 revisions
Draw one character (codepoint)
| Parameter | Default Value | Note |
|---|---|---|
| font | ||
| codepoint | ||
| position | [0, 0] | |
| fontSize | 20 | |
| tint | BLACK |
None.
// Draw a single character (codepoint 65 = 'A') using the default font
font = raylib.GetFontDefault
raylib.DrawTextCodepoint font, 65, [100, 200], 32, raylib.YELLOW