operator -(Vector4, Vector4)
Subtracts one vector from another.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Operator
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static Vector4 operator -(Vector4 a, Vector4 b)
Parameters
Returns
Type | Description |
|---|---|
| Vector4 |
Remarks
Subtracts each component of from .
baExamples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { // prints (-5.0,-3.0,-1.0,1.0) print(new Vector4(1, 2, 3, 4) - new Vector4(6, 5, 4, 3)); }}