Particles3DDirection

Family: 3DParticles · One form

What it does

Particles3DDirection sets Direction on a 3DParticles object. It takes ID (an integer), vx (a float), vy (a float), vz (a float) and roll (a float), and returns nothing.

Syntax

Particles3DDirection(ID integer, vx float, vy float, vz float, roll float)

Parameters

NameType
IDinteger
vxfloat
vyfloat
vzfloat
rollfloat

Every form returns

nothing

Example · generated

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

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

41 commands in 3DParticles