ParticlesVelocityRange

Family: Particles · One form

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

NameType
IDinteger
v1float
v2float

Every form returns

nothing

Example · generated

ParticlesVelocityRange(1, 1.0, 1.0)DO  Sync()LOOP

ParticlesVelocityRange 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.

38 commands in Particles