Tagged Questions
-2
votes
1answer
131 views
Detailed Modern Opengl Tutorial? [duplicate]
I am asking for a specific modern opengl tutorial.
I need a tutorial that does not skip to explain any lines of code. It should also include different independent objects moving/rotating (most ...
1
vote
0answers
80 views
Collision detection code style [closed]
Not only there are two useful broad-phase algorithms and a lot of useful narrowphase algorithms, there are also multiple code styles.
Arrays vs. calling
Make an array of broadphase checks, then ...
52
votes
9answers
3k views
How to avoid circular dependencies between Player and World?
I'm working on a 2D game where you can move up, down, left and right. I have essentially two game logic objects:
Player: Has a position relative to the world
World: Draws the map and the player
So ...