In my code, I cannot set cordinate the lighting according to the object so I cannot with fixed my lighting on the object which moves. How can i move the light with the objects

I have an objet that is in the 0,0,-15 position and When I press the up down right left buttons , this object moving with the light which is lamb object. Yet, although I put the light(lamb object) 0,0,-15 position and give move_x and move_z cordinates as a position of light , the light is appeared in the different place and it is moving unlinked with my object. this is my code :

            glTranslatef(move_x,0,move_y);
            float l0_pos_temp[] = {move_x   ,-3, move_y  ,1} ;
            glLightfv( GL_LIGHT0, GL_POSITION, l0_pos_temp ) ;
            glTranslatef(0,-3,0);
            Light();
        glPopMatrix();
link|improve this question

50% accept rate
2  
I'm sorry, but I do not understand what you're asking for. Can you explain what you're trying to achieve in greater detail? – Nicol Bolas Dec 25 '11 at 3:19
thanks, I give more detail – lkalay Dec 25 '11 at 8:38
feedback

1 Answer

up vote 0 down vote accepted

An important thing to note, is that glLightfv() is affected by the current state of the modelview matrix. That is calling glTranslatef(move_x,0,move_y), before setting the light position will translate the light by (move_x,0,move_y).

Perhaps you want:

        glTranslatef(move_x,0,move_y);
        float l0_pos_temp[] = {0.0f, -3.0f, -15.0f, 1.0f};
        glLightfv( GL_LIGHT0, GL_POSITION, l0_pos_temp );
        glPopMatrix();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.