Operator ( Vector4 * number )
7/14/25Less than 1 minute
Operator ( Vector4 * number )
Multiplies a vector by a number.
| LHS Type | Symbol | RHS Type | Result Type |
|---|---|---|---|
| Vector4 | * | number | Vector4 |
Usage
---@type Vector4
local lhs;
---@type number
local rhs;
local result = lhs * rhs; -- result is Vector4
