Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector3.Max

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

Parameters

Description

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

See Also: 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)); } }