What it does
Vector3Multiply takes resultVec (an integer) and multiplier (a float), and returns nothing.
Syntax
Vector3Multiply(resultVec integer, multiplier float)Parameters
| Name | Type |
|---|---|
| resultVec | integer |
| multiplier | float |
Every form returns
nothing
Example · generated
Vector3Multiply(1, 1.0)DO Sync()LOOPVector3Multiply 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.