What it does
Vector3Add takes resultVec (an integer) and addVec (an integer), and returns nothing.
Syntax
Vector3Add(resultVec integer, addVec integer)Parameters
| Name | Type |
|---|---|
| resultVec | integer |
| addVec | integer |
Every form returns
nothing
Example · generated
Vector3Add(1, 1)DO Sync()LOOPVector3Add 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.