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