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