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

cvar

From Quake Wiki

Revision as of 14:46, 1 August 2023 by Boondorl (talk | contribs)

float cvar(string name)

Usage

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

Parameters

  • name
The name of the console variable.

Return

The value of the console variable.

Example

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