Skip to main content

Vector3.Min(Vector3 lhs, Vector3 rhs)

Returns a vector that is made from the smallest components of two vectors.

Parameters:

NameTypeDescription
lhsVector3
rhsVector3

Returns:

typeDescription
Vector3vector that is made from the smallest components of two vectors.

Usage

---@type Vector3
local lhs;

---@type Vector3
local rhs;


local val0 = Vector3:Min(lhs, rhs)