Hi, I have same problems with detection collision between RigidBody2D and KinematicBody2D. On Rigid I have set Contact Monitor as ON and Contacts Raported as 10.
The code
var bodies = get_colliding_bodies()
print(bodies)
retiurn null although in the same time code from KinematicBody2D
if (is_colliding()):
print(get_collider())
return
[RigidBody2D:631]
What I have to do to have detection on RigidBody? Please help :)