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
| Name | Type |
|---|---|
| ID | integer |
| vx | float |
| vy | float |
| vz | float |
| roll | float |
Every form returns
nothing
Example · generated
Particles3DDirection(1, 1.0, 1.0, 1.0, 1.0)DO Sync()LOOPParticles3DDirection 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.