Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

cvar

From Quake Wiki

Revision as of 17:43, 1 August 2023 by Boondorl (talk | contribs) (Usage)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

float cvar(string name)

Usage[edit]

Gets the value of a console variable as a number. For variables that don't store numbers or don't exist this will always return 0.

Parameters[edit]

  • name
The name of the console variable.

Return[edit]

The value of the console variable.

Example[edit]

// Get the current gravity
float gravity = cvar("sv_gravity");