Hi all,
so i have two sprites, that are polygon’s with the drop set as convex. the drop sprite doesn’t seem to be colliding, I don’t get any debug statements or hitting any breakpoints any help would be appreciated! thanks!.
Script on the sprite
void OnTriggerEnter(Collider other)
{
Debug.Log("Trigger!");
}
void OnCollisionEnter(Collision collision)
{
Debug.Log("Collision!");
}