Skip to main content
added code markdown
Source Link
Pikalek
  • 13.4k
  • 5
  • 49
  • 54

Collision Predictionprediction of 2 moving objectobjects

I have to 2 objects with Collider2DCollider2D. Both objects are moving, in the very next frame they will either overlap each other or not. How to predict if they would Collidecollide on the next frame? I'm thinking of Instantiatinginstantiating a temporary object then use collidercollider.Overlap().Overlap(); But maybe there are better ways to do this.

Collision Prediction of 2 moving object

I have to 2 objects with Collider2D. Both objects are moving, in the very next frame they will either overlap each other or not. How to predict if they would Collide on the next frame? I'm thinking of Instantiating a temporary object then use collider.Overlap(); But maybe there are better ways to do this.

Collision prediction of 2 moving objects

I have to 2 objects with Collider2D. Both objects are moving, in the very next frame they will either overlap each other or not. How to predict if they would collide on the next frame? I'm thinking of instantiating a temporary object then use collider.Overlap(). But maybe there are better ways to do this.

Source Link

Collision Prediction of 2 moving object

I have to 2 objects with Collider2D. Both objects are moving, in the very next frame they will either overlap each other or not. How to predict if they would Collide on the next frame? I'm thinking of Instantiating a temporary object then use collider.Overlap(); But maybe there are better ways to do this.