Godot Version
4.4
Question
Is it possible to make two Character Bodies to push each other?
I am tring to make a fighting game and, i want to make each other push one another when they walk, i´ve seen that i can use get_slide_collision_count() but i don´t understand why or how should i use it.
You will need to calculate the collision yourself. move_and_slide() slides the character along the surface, but it doesn’t look like you want that behavior. You might want to try using move_and_collide() instead to have more control over the collision behavior.
Alternately, you could use RigidBodies instead, as those use the built-in physics system.