]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/panel/scoreboard.qh
Don't disable rendering completely if the player is invisible, fixes #2395
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / scoreboard.qh
1 #pragma once
2 #include "../panel.qh"
3
4 bool autocvar_cl_deathscoreboard;
5 string autocvar_scoreboard_columns;
6
7 bool scoreboard_showscores;
8
9 bool scoreboard_active;
10 float scoreboard_fade_alpha;
11 float scoreboard_acc_fade_alpha;
12
13 void Cmd_Scoreboard_SetFields(int argc);
14 void Scoreboard_Draw();
15 void Scoreboard_InitScores();
16 void Scoreboard_UpdatePlayerTeams();
17 void Scoreboard_UpdatePlayerPos(entity pl);
18 void Scoreboard_UpdateTeamPos(entity Team);
19 bool Scoreboard_WouldDraw();