Can't get polygon colliders to collide!? 2DToolkit

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!");
}


Interesting fun fact, to make them collide i had to add rigidbody’s to them, and set the bucket to isKinematic to ensure its not affected by forces…