I'm using lwjgl if it makes a difference (but it shouldn't).
Here is what I'm doing atm.
glLight(GL_LIGHT0, GL_POSITION, (FloatBuffer) BufferUtils.createFloatBuffer(4).put(x).put(y).put(z).put(1.0f).flip());
x, y and z are the positions of the camera. I've tried pushing the matrix. not pushing the matrix, everything and it always seems to be in the same spot. The light also seems to light a huge area.
And yes the light I'm creating is Light0. |