-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.LoadRandomSequence
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Load random values sequence, no values repeated, min and max included
| Parameter | Default Value | Note |
|---|---|---|
| count | ||
| min | ||
| max |
| Condition | Return Value |
|---|---|
| (always) | list |
// Load 10 unique random values between 1 and 100
seq = raylib.LoadRandomSequence(10, 1, 100)
print seq
raylib.UnloadRandomSequence seq