ScriptState::GetValue
Defined in:
Returns a script variable.
C4Scripts.h
Prototype
Value *GetValue(const char *name) const;
Parameters
name |
The name of the value to retrieve. |
Description
The GetValue
function returns the script variable specified by the name
parameter. If no variable by that name exists, then the return value is nullptr
.
See Also