Version: 2021.3
LanguageEnglish
  • C#

Vector3.Max

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static Vector3 Max(Vector3 lhs, Vector3 rhs);

Description

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

Additional resources: Min function.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Vector3 a = new Vector3(1, 2, 3); public Vector3 b = new Vector3(4, 3, 2);

void Example() { print(Vector3.Max(a, b)); // prints (4.0f, 3.0f, 3.0f) } }