I'm beginner in making games in OpenGL. I drew a map (this is world, there player can move) and now I want to do, that camera follows the player (player is in center of the screen). I've done something like this:
GLU.gluLookAt(gl,
this.x, this.y, 0,
this.x, this.y, 1.0f,
0.0f, 0.0f, 0.0f);
Where this.x and this.y are coordinates of player. Unfortunately It doesn't work :( Nothing happens. This is 2d game so there aren't any perpective etc.