From: LegendaryGuard Date: Thu, 4 Mar 2021 23:04:25 +0000 (+0000) Subject: Added hud_ cvars part in CSQC, MENUQC, SVQC and GAMEQC blocks section X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.wiki.git;a=commitdiff_plain;h=15091f9d26c060b72c64e63f08888e9fa5badab6 Added hud_ cvars part in CSQC, MENUQC, SVQC and GAMEQC blocks section --- diff --git a/Programming-QuakeC-stuff-in-Xonotic.md b/Programming-QuakeC-stuff-in-Xonotic.md index 19cb213..4561f41 100644 --- a/Programming-QuakeC-stuff-in-Xonotic.md +++ b/Programming-QuakeC-stuff-in-Xonotic.md @@ -30,6 +30,10 @@ Example: `sv_campcheck` is clearly a server cvar (**sv_*** cvars are server cvar Example: `cl_chatsound` is clearly a client cvar (**cl_*** cvars are client cvars), only can be declared inside a **`#ifdef CSQC`** block. +- **hud_*** cvars: + +Example: `hud_progressbar_alpha` is a client cvar (**hud_*** cvars belong to client cvars), only can be declared inside a **`#ifdef CSQC`** block. +