In Godot 4, using C#, I'm having difficulty getting a signal for a collision. I'm using a TileMap/TileSet to create a floor and I added the Physics Layer component. My Player does NOT fall through the floor, my Player hits the floor and stops. So obviously collision is turned on and working perfectly.
However, in the inspector, when you click on the NODE tab, you can see the signals for each node in the tree that you select. I have my Player (RigidBody2D) node selected and I'm trying to get the function _onBodyEntered(Node body) to be called when my player collides with the floor. But no matter what, the TileMap/TileSet will NOT emit this signal.
I just want a solution for how I can guarantee my player is ON THE FLOOR is all I want. I don't need to solve this particular problem if there is an easier way to verify your player is on the floor. But it would be nice to know when my player collides with my TileMap for other parts of the game.
Please DO NOT tell me to read the documentation. I have. Multiple times. It's lacking.
I have made sure the Player is in Layer 1 and my TileMap/TileSet is Layer 2. I have set BOTH of their MASKS to both 1 and 2.
I have double checked and re-made my TileSet multiple times to make sure I did create the tiles properly with the Collision Paint Physics Layer 0 thing. Not sure why it's called Layer 0 though. But my tiles DEFINITELY have the collision turned on.
The fact that the player isn't falling through the floor indicates that the collision is working properly.
If you want to detect the collision in a
CharacterBody2D
, you need to do so in the_physics_process
. Specifically, you need to do it in the code that is moving the character (e.g.move_and_slide
ormove_and_collide
). Alternatively, if you just want to know that the player is on the ground, use theis_on_floor()
function.Here's the template code for a
CharacterBody2D
assuming you haveMotion Mode
set toGrounded
(default).You can modify that last line (
move_and_slide()
) in a couple of ways:true
if a collision occured) for determining whether or not a collision occurred.move_and_collide()
and capture the result with is aKinematicCollision2D
. Use that for handling the collision.