Skip to content

raylib.LoadRandomSequence

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Load random values sequence, no values repeated, min and max included

Parameters

Parameter Default Value Note
count
min
max

Return value

Condition Return Value
(always) list

Notes

Example

// Load 10 unique random values between 1 and 100
seq = raylib.LoadRandomSequence(10, 1, 100)
print seq
raylib.UnloadRandomSequence seq

Clone this wiki locally