Osiris/API/GetVarFloat: Difference between revisions

From Divinity Engine Wiki
Jump to navigation Jump to search
(Created page with "===== Full Definition(s) ===== * query '''GetVarFloat'''('''''[in]'''(GUIDSTRING)'''''_Source''', '''''[in]'''(String)'''''_Varname''', '''''[out]'''(REAL)'''''_VarValue''') =...")
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
Returns the value of the variable %<'''_Varname'''> of '''_Source''', if it is a floating-point number.
Returns the value of the variable %<'''_Varname'''> of '''_Source''', if it is a floating-point number.
===== Return Values =====
===== Return Values =====
* '''Success/Failure''': Fails if '''_Source''' does not exist.
* '''Success/Failure''': Fails if '''_Source''' does not exist, or if the variable does not exist (or exists but has the wrong type).
* '''_VarValue''': The value of the queried floating-point number.
* '''_VarValue''': The value of the queried floating-point number.
===== Notes =====
===== 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.
*The variable has to be global. 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.
* There is no automatic conversion between Integers and Floats.
===== See Also =====
===== See Also =====
* [[Osiris/API/GetVarObject|GetVarObject]]
* [[Osiris/API/GetVarObject|GetVarObject]]

Latest revision as of 16:49, 20 December 2017

Full Definition(s)
  • query GetVarFloat([in](GUIDSTRING)_Source, [in](String)_Varname, [out](REAL)_VarValue)
Description

Returns the value of the variable %<_Varname> of _Source, if it is a floating-point number.

Return Values
  • Success/Failure: Fails if _Source does not exist, or if the variable does not exist (or exists but has the wrong type).
  • _VarValue: The value of the queried floating-point number.
Notes
  • The variable has to be global. 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.
See Also