What it does
SetupNoise takes frequency (a float), amplitude (a float), lacunarity (a float) and persistence (a float), and returns nothing.
Syntax
SetupNoise(frequency float, amplitude float, lacunarity float, persistence float)Parameters
| Name | Type |
|---|---|
| frequency | float |
| amplitude | float |
| lacunarity | float |
| persistence | float |
Every form returns
nothing
Example · generated
SetupNoise(1.0, 1.0, 1.0, 1.0)DO Sync()LOOPSetupNoise is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.