Vector3.Min(Vector3 lhs, Vector3 rhs)
Returns a vector that is made from the smallest components of two vectors.
Parameters:
Name | Type | Description |
---|---|---|
lhs | Vector3 | |
rhs | Vector3 |
Returns:
type | Description |
---|---|
Vector3 | vector 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)