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