Hi! I'm not a programmer just play with the codes :). When I tried to do a top-down camera view in an older sauerbreten (mp edition), all models -playermodel, ammo pickup, hp... goes invisible, but the camera is work perfectly. What's wrong?
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
int farplane = max(max(fog*2, 384), hdr.worldsize*2);
gluPerspective(fovy, aspect, 0.54f, farplane);
glRotatef(90, 1, 0, 0); //topdown camera
glMatrixMode(GL_MODELVIEW);
transplayer();
Thanx for the help... :)