config
get_bool( key ): bool
Returns a boolean from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
get_int( key ): int
Returns an integer from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
get_double( key ): double
Returns a double from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
get_float( key ): float
Returns a float from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
get_color( key ): color_t
Returns a color from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
set_bool( key, value )
Sets a boolean at the specified key
Type
Name
Description
string
key
The config variable you want to set
boolean
value
The new value of the config variable
set_int( key, value )
Sets an integer at the specified key
Type
Name
Description
string
key
The config variable you want to set
int
value
The new value of the config variable
set_double( key, value )
Sets a double at the specified key
Type
Name
Description
string
key
The config variable you want to set
double
value
The new value of the config variable
set_float( key, value )
Sets a float at the specified key
Type
Name
Description
string
key
The config variable you want to set
float
value
The new value of the config variable
set_color( key, value )
Sets a color at the specified key
Type
Name
Description
string
key
The config variable you want to set
color_t
value
The new value of the config variable
Last updated
Was this helpful?