I am developing an android 2D game which involves infinite running and jumping to great heights. I am trying to implement a modified hash grid that recycles its cells, but the more i dig into it the more i feel it's going to be very slow. I also use the hash grid to have a reference on what to render and spawn. My question is, are there any systems that satisfy my needs? Or perhaps some tips to use the grid efficiently?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You might want to have a look to Box2D I had to take care of a game with some collisions in the past, but it was in Java so I could work perfectly with awt.geom library, which is not available in Android. Another approach would be to work with Rect and detecting collisions with "contains" and "intersect". |
|||
|
|