How to make gameobjects collide with each other in this game?(solved)


i added physics collisions to all game objects and make it Kinematic but notings hapens

i need to let player collide with the ball and give the ball some force to move
and if player collide with wall it well stop

1 Like

Kinematic collisions are detected by the physics engine but not resolved. All collisions, be they from kinemtic or dynamic objects, will generate collision_response and contact_point_response messages. If you have a script attached to one of the colliding objects you’ll be able to handle these messages and apply some logic.

1 Like