Using c#.
I have two rigidBody2Ds - one static and one rigid. I've hooked up the bodyentered signal on both and they hit each other in the scene once you start it. (I've turned on contact monitoring AND raised the contacts reported to 100 on BOTH so that is not the issue!). Only the rigidBody2D with mode rigid is firing the signal - if I change the static rigidBody2D to type rigid, its bodyentered signal starts working again. What am I missing? How do I use body_entered signal on a static rigidBody2D? Does it have to be moving? Documentation said static mode makes the rigid behave like a staticBody2D which has no signals, is that why?
For those curious, use case was having an area to despawn rigidBody2D's if they entered. Ended up using an area2D instead (which worked), but I'm curious as to why my initial idea of using a static rigidBody2D didn't work. I couldn't figure it out after looking at documentation.