ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


functions:a_getcvarfixed

This is an old revision of the document!


a_GetCVarFixed

fixed a_GetCVarFixed(str name)

This function is called a_GetCVarFixed() because it conflicts with GDCC's unrelated GetCVarFixed().

Description

Returns the value of an int or float CVar as a fixed-point number.

Returns 0 if the CVar doesn't exist or is not a number.

The function works by calling GetCVarString and parsing the text with atof.

Examples

int mul = a_GetCVarFixed("mymod_multiplier"); // declared as float in CVARINFO
int value = FixedMul(x, mul);

See also

functions/a_getcvarfixed.1497356006.txt.gz · Last modified: 2017/06/13 15:13 by korshun