Hot to resolve kinematic collisions? (SOLVED)

How do i manage collisions with game objects with collision objects that are kinematic does it work like dynamic game objects?

Look at the platformer example tutorial.

Kinematic collision objects will receive contact_point_response and collision_response messages when collisions are detected. The contact_point_response messages contain detailed information about the collision (normal, distance etc) and this information can be used to resolve the collision through code. This is described in detail in the physics manual and shown in practice in the tutorial linked by Pkeod.

2 Likes

thanks guys

1 Like