Вычитает один vector из другого
Вычитает каждый компонент из b
на /a/
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(new Vector2(1, 2) - new Vector2(3, 2)); } }
Отрицательный vector
Каждый компонент в результате отрицательный
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(-new Vector2(1, 2)); } }