I have a skybox and some water with a waving effect. The skybox and water move as the camera moves. This is all well and good, but when I press space, I want the camera to move up, but without the skybox or water moving up too. The skybox doesn't move, but the water comes up as well as the camera, which I dont want. Anyone know why?
//Camera
glRotatef(elevation, 1,0,0);
glRotatef(heading, 0,1,0);
glRotatef(rot, 0,0,1);
glTranslatef(-eyeX,-eyeY,-eyeZ);
//Skybox
glPushMatrix();
glTranslatef(eyeX,0,eyeZ);
drawCube();
drawSea();
glPopMatrix();
None of the translate variables are being used in drawSea().