[Request] One Point Collision

0 favourites
From the Asset Store
Connect the dots in the correct order and draw happy animals!
  • I would like to get this answer if is possible to add point in collision like CC does.

    newt Have you played Starcraft?

  • Actually, no.

    Then again just because you see a bullet doesn't mean its doing collision detection either.

    Any way, the method I suggested works on html5, and can be implemented by anybody.

    However I would love to see the probability of Ashley implementing point collision.

  • This is a good topic, I think I'll have to move away from the standard collision system too. It impacts performance too much with a lot of objects.

    Are you sure Ashley is using something as inefficient as that 500 x 500 (250,000) collision model? What if he's already doing something decent?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Point collision isn't really a high priority. It's on the todo list but it will work about the same as just using a really small collision poly around where you want the point to be. There wouldn't be much in the way of performance or functionality benefits.

    Currently the collision engine does use a brute force approach. I want to change this (another thing on the todo list), but it's not straightforward. Using datastructures like quadtrees or just simple buckets causes more overhead for moving objects, since every time an object moves its bucket or quadtree section must be maintained. Therefore it is a careful tradeoff between slowing down the ordinary operation of games, and then more than offsetting that by speeding up collisions. I believe it's a trade-off worth making, but in the mean time there's a lot of other stuff to be working on, and I don't think many games are seriously affected by the brute force approach. If objects are far away so their bounding boxes do not overlap, the engine can reject the collision test with a simple rect test. This is so fast you really do need thousands of tests to notice a change in the framerate. So the current system really isn't that bad, it's just adequate.

  • Thanks for the response.

    f objects are far away so their bounding boxes do not overlap, the engine can reject the collision test with a simple rect test.

    Can someone clarify what he means by "rect"?

  • He means a rectangle test. In other words just the bounding box test.

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)