-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.LoadCodepoints
JoeStrout edited this page Apr 29, 2026
·
3 revisions
Load all codepoints from a UTF-8 text string, codepoints count returned by parameter
| Parameter | Default Value | Note |
|---|---|---|
| text |
| Condition | Return Value |
|---|---|
| (always) | list |
// Load all codepoints from a string then unload them
codepoints = raylib.LoadCodepoints("Hello!")
print codepoints // [72, 101, 108, 108, 111, 33]
raylib.UnloadCodepoints codepoints