Seeded Random Float

Pure
SeededRandomFloat

Returns a deterministic random float in [Min, Max] driven by a seed. The same seed always produces the same value.

Type: Pure (no side effects)
Category: Fortuna|Math & Numeric
Keywords: math & numeric

Inputs

NameTypeDefaultDescription
Seedint32Seed parameter
MinfloatMin parameter
MaxfloatMax parameter

Outputs

NameTypeDescription
ReturnValuefloatReturnValue output

Example Use Cases

Example 1

Generate consistent loot spread each session from a world seed.

Example 2

Produce stable noise values without storing state.