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