What it does
ParticlesVelocityRange sets VelocityRange on a Particles object. It takes ID (an integer), v1 (a float) and v2 (a float), and returns nothing.
Syntax
ParticlesVelocityRange(ID integer, v1 float, v2 float)Parameters
| Name | Type |
|---|---|
| ID | integer |
| v1 | float |
| v2 | float |
Every form returns
nothing
Example · generated
ParticlesVelocityRange(1, 1.0, 1.0)DO Sync()LOOPParticlesVelocityRange 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.