Difference between revisions of "Osiris/API/GetVarInteger"
From Divinity Engine Wiki
(Created page with "===== Full Definition(s) ===== * query '''GetVarInteger'''('''''[in]'''(GUIDSTRING)'''''_Source''', '''''[in]'''(String)'''''_Varname''', '''''[out]'''(INTEGER)'''''_VarValue'...") |
m |
||
Line 12: | Line 12: | ||
* [[Osiris/API/SetVarObject|SetVarObject]] | * [[Osiris/API/SetVarObject|SetVarObject]] | ||
* [[Osiris/API/ClearVarObject|ClearVarObject]] | * [[Osiris/API/ClearVarObject|ClearVarObject]] | ||
− | |||
* [[Osiris/API/SetVarInteger|SetVarInteger]] | * [[Osiris/API/SetVarInteger|SetVarInteger]] | ||
* [[Osiris/API/GetVarFloat|GetVarFloat]] | * [[Osiris/API/GetVarFloat|GetVarFloat]] |
Revision as of 17:20, 20 December 2017
Full Definition(s)
- query GetVarInteger([in](GUIDSTRING)_Source, [in](String)_Varname, [out](INTEGER)_VarValue)
Description
Returns the value of the variable %<_Varname> of _Source, if it an integer.
Return Values
- Success/Failure: Fails if _Source does not exist.
- _VarValue: The value of the queried integer variable.
Notes
- The variable has to be a global variable. The _Varname does not include the prefix % that is used for global variables in behaviourscript. E.g. a variable that is called %Variable in behaviourscript would simply be Variable for the purposes of this query.