Test pNIADIPSDNIP

This commit is contained in:
2023-12-04 17:48:22 +03:00
parent 84ecc68320
commit def463afcf
5 changed files with 80 additions and 21 deletions

View File

@@ -19,7 +19,7 @@ public interface ICollider2D : IBehaviour, IAssignableTransform
IReadOnlyList<Vector2> Vertices { get; }
bool CheckCollision(Vector2 point, ICollider2D otherCollider, out Vector2 normal);
bool CheckCollision(Vector2 point, ICollider2D otherCollider, out CollisionInformation collisionInformation);
void RecalculateVertices();
}