![]() |
Nuclide
Software Development Kit for id Technology (BETA)
|
CVar library.
Depending on if you're on the client or server side, it will only ever affect its respective side.
You can not change cvars of other players when called on the server.
Likewise you are unable to alter server-side cvars from a client.
Public Member Functions | |
string | GetString (string cvarName) |
Returns the string value of a console variable. More... | |
int | GetInteger (string cvarName) |
Returns the integer value of a console variable. More... | |
float | GetFloat (string cvarName) |
Returns the floating-point value of a console variable. More... | |
float | GetBool (string cvarName) |
Returns the boolean value of a console variable. More... | |
vector | GetVector (string cvarName) |
Returns the vector value of a console variable. More... | |
void | SetString (string cvarName, string setValue) |
Sets the specified console variable to a set string value. More... | |
void | SetInteger (string cvarName, int setValue) |
Sets the specified console variable to a set integer value. More... | |
void | SetBool (string cvarName, float setValue) |
Sets the specified console variable to a set boolean value. More... | |
void | SetFloat (string cvarName, float setValue) |
Sets the specified console variable to a set floating-point value. More... | |
void | SetVector (string cvarName, vector setValue) |
Sets the specified console variable to a set vector. More... | |
float cvarAPI_t::GetBool | ( | string | cvarName | ) |
Returns the boolean value of a console variable.
cvarName | specifies the console variable key to query. |
float cvarAPI_t::GetFloat | ( | string | cvarName | ) |
Returns the floating-point value of a console variable.
cvarName | specifies the console variable key to query. |
int cvarAPI_t::GetInteger | ( | string | cvarName | ) |
Returns the integer value of a console variable.
cvarName | specifies the console variable key to query. |
string cvarAPI_t::GetString | ( | string | cvarName | ) |
Returns the string value of a console variable.
cvarName | specifies the console variable key to query. |
vector cvarAPI_t::GetVector | ( | string | cvarName | ) |
Returns the vector value of a console variable.
cvarName | specifies the console variable key to query. |
void cvarAPI_t::SetBool | ( | string | cvarName, |
float | setValue | ||
) |
Sets the specified console variable to a set boolean value.
cvarName | specifies the console variable to set. |
setValue | specifies the value of said key. |
void cvarAPI_t::SetFloat | ( | string | cvarName, |
float | setValue | ||
) |
Sets the specified console variable to a set floating-point value.
cvarName | specifies the console variable to set. |
setValue | specifies the value of said key. |
void cvarAPI_t::SetInteger | ( | string | cvarName, |
int | setValue | ||
) |
Sets the specified console variable to a set integer value.
cvarName | specifies the console variable to set. |
setValue | specifies the value of said key. |
void cvarAPI_t::SetString | ( | string | cvarName, |
string | setValue | ||
) |
Sets the specified console variable to a set string value.
cvarName | specifies the console variable to set. |
setValue | specifies the value of said key. |
void cvarAPI_t::SetVector | ( | string | cvarName, |
vector | setValue | ||
) |
Sets the specified console variable to a set vector.
cvarName | specifies the console variable to set. |
setValue | specifies the value of said key. |