sqrMagnitude
Returns the squared length of this vector (Read Only).
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public readonly int sqrMagnitude { get; }
Remarks
Calculating the squared magnitude instead of the Vector2Int.magnitude is much faster.
Often if you are comparing magnitudes of two vectors you can just compare their squared magnitudes.
Additional Resources: Vector2Int.magnitude.