of     1   

magnalite
#123263353Thursday, January 16, 2014 4:49 PM GMT

I'm playing around with openGL but when I call glLight() it always puts the light in seemingly the same spot no matter what I put the values at. I am assuming the float array is [x, y ,z, ?] I'm not sure what the last value is either. Could someone give me some clarification?
xSoulStealerx
#123264969Thursday, January 16, 2014 5:27 PM GMT

void glLightf( GLenum light, GLenum pname, GLfloat param);
xSoulStealerx
#123265049Thursday, January 16, 2014 5:29 PM GMT

Oh sorry, you were looking for the values in the 'param'. ughh. I should probably learn not to post and regret 5 seconds after posting.
Notunknown99
#123271118Thursday, January 16, 2014 7:47 PM GMT

I do not see glLight on the reference...
magnalite
#123271325Thursday, January 16, 2014 7:51 PM GMT

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.
NVI
#123274557Thursday, January 16, 2014 8:46 PM GMT

You shouldn't be using the fixed-function renderer.
magnalite
#123274816Thursday, January 16, 2014 8:50 PM GMT

I'm still learning how to openGL.

    of     1