Difference between revisions of "Osiris/API/SetVarFloat"
From Divinity Engine Wiki
(Created page with "===== Full Definition(s) ===== * call '''SetVarFloat'''(''(GUIDSTRING)'''''_Source''', ''(STRING)'''''_VarName''', ''(REAL)'''''_VarValue''') ===== Description ===== Sets the...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
Sets the value of the variable %<'''_Varname'''> to '''_VarValue''', if the variable exists and is of the FLOAT type. | Sets the value of the variable %<'''_Varname'''> to '''_VarValue''', if the variable exists and is of the FLOAT type. | ||
===== Notes ===== | ===== Notes ===== | ||
− | * The variable has to be | + | * 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 call. |
===== See Also ===== | ===== See Also ===== | ||
* [[Osiris/API/GetVarObject|GetVarObject]] | * [[Osiris/API/GetVarObject|GetVarObject]] | ||
Line 10: | Line 10: | ||
* [[Osiris/API/ClearVarObject|ClearVarObject]] | * [[Osiris/API/ClearVarObject|ClearVarObject]] | ||
* [[Osiris/API/GetVarInteger|GetVarInteger]] | * [[Osiris/API/GetVarInteger|GetVarInteger]] | ||
− | * [[Osiris/API/ | + | * [[Osiris/API/SetVarInteger|SetVarInteger]] |
* [[Osiris/API/GetVarFloat|GetVarFloat]] | * [[Osiris/API/GetVarFloat|GetVarFloat]] | ||
* [[Osiris/API/GetVarString|GetVarString]] | * [[Osiris/API/GetVarString|GetVarString]] |
Latest revision as of 17:48, 20 December 2017
Full Definition(s)
- call SetVarFloat((GUIDSTRING)_Source, (STRING)_VarName, (REAL)_VarValue)
Description
Sets the value of the variable %<_Varname> to _VarValue, if the variable exists and is of the FLOAT type.
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 call.