Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Vector4.operator -

public static Vector4 operator -(Vector4 a, Vector4 b);

Description

Subtracts one vector from another.

Subtracts each component of b from a.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // prints (-5.0,-3.0,-1.0,1.0) void Example() { print(new Vector4(1, 2, 3, 4) - new Vector4(6, 5, 4, 3)); } }

public static Vector4 operator -(Vector4 a);

Description

Negates a vector.

Each component in the result is negated.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // prints (-1.0,-2.0,-3.0,-4.0) void Example() { print(-new Vector4(1, 2, 3, 4)); } }

Did you find this page useful? Please give it a rating: