| [ Web Proxy ] |
| Viewing: https://docs.unity3d.com/ScriptReference/Vector4.Min.html | [Back] [Original] |
| Parameter | Description |
|---|---|
| lhs | The first vector to compare. |
| rhs | The second vector to compare. |
Vector4 A vector that is made from the smallest components of the given vectors.
Creates a vector that is made from the smallest components of two vectors.
Additional resources: Max function.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Vector4 a = new Vector4(1, 2, 3, 5); Vector4 b = new Vector4(4, 3, 2, 0); print(Vector4.Min(a, b)); // prints (1.0,2.0,2.0,0.0) } }
| Web Proxy Viewer | New URL | Original Page |