Hi,
Is it possible to change the cross hair color of player 1 from black to red and player 2 from black to green?
[lostwsga]
Crosshairs=3
....
// Draw visible crosshairs
glBegin(GL_TRIANGLES);
if ((crosshairs & 1) && !offscreenTrigger[0]) // Player 1
DrawCrosshair(x[0], y[0], 1.0f, 0.0f, 0.0f);
if ((crosshairs & 2) && !offscreenTrigger[1]) // Player 2
DrawCrosshair(x[1], y[1], 0.0f, 1.0f, 0.0f);
glEnd();
....

Users browsing this forum: No registered users and 1 guest