Version: 2017.2
public static Vector4 operator - (Vector4 a, Vector4 b);

Description

Вычитает один vector из другого

Вычитает каждый компонент из b на /a/

using UnityEngine;
using System.Collections;

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

public static Vector4 operator - (Vector4 a);

Description

Отрицательный vector

Каждый компонент в результате отрицательный

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(-new Vector4(1, 2, 3, 4)); } }