Typo fix
This commit is contained in:
parent
d4ebf87eb7
commit
9249898272
|
@ -6,7 +6,7 @@ namespace Movement
|
|||
{
|
||||
private Collider2D[] nonAllocColliderArray = new Collider2D[5]; // TODO increase the size if it causes problems
|
||||
|
||||
public LayerMask LayerMask = ~((1 << 6) | (1 << 7)); // Everything except the "Player" and "Enemy" layer
|
||||
public LayerMask layerMask = ~((1 << 6) | (1 << 7)); // Everything except the "Player" and "Enemy" layer
|
||||
public bool IsCollided => Physics2D.OverlapBoxNonAlloc(transform.position, transform.localScale, 0, nonAllocColliderArray, LayerMask) != 0;
|
||||
|
||||
public void OnDrawGizmosSelected()
|
||||
|
|
Loading…
Reference in New Issue