]> git.xonotic.org Git - xonotic/xonotic.wiki.git/commitdiff
Added hud_ cvars part in CSQC, MENUQC, SVQC and GAMEQC blocks section
authorLegendaryGuard <rootuser999@gmail.com>
Thu, 4 Mar 2021 23:04:25 +0000 (23:04 +0000)
committerLegendaryGuard <rootuser999@gmail.com>
Thu, 4 Mar 2021 23:04:25 +0000 (23:04 +0000)
Programming-QuakeC-stuff-in-Xonotic.md

index 19cb2139ab38c8670a230060a67164ecd58e5d79..4561f418bfecd6938ed17dc489e8ef53b37f1f88 100644 (file)
@@ -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.
 
 
 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.
+
 
 <br />
 
 
 <br />