KInematic Body Collisions

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Skydome

I need to make it so that when two kinematic bodies are colliding. The other object won’t bulge instead of being pushed by the force.

I want the collision to be like in pokemon games. The collsion is between two human NPCs. These NPCs will also have AIs that allow them to move where they want. So I need the collsiion to work like in pokemon 2D rpg games.

I think you are referring to rigibodies, kinematic bodies don’t move unless you script them to.

Yaann | 2021-05-23 08:56

Ok so the problem was I was using signals for movement collision. Because signals would be better for performance. But signals are insufficient for what I’m doing.

So I am using

var collision=move_and_collide(velocity*delta)
if collision:

Skydome | 2021-05-23 18:19

:bust_in_silhouette: Reply From: Skydome

Ok so the problem was I was using signals for movement collision. Because signals would be better for performance. But signals are insufficient for what I’m doing.

So I am using

var collision=move_and_collide(velocity*delta)
if collision: