Sets value of a specific variable as a string.
Syntax |
void set_string(const string &in name, const string &in value) |
---|---|
name |
Variable name |
value |
Value of the variable |
Result |
(none) |
Notes |
For more information about the variable, see the section on default variables. |
Example of use:
bool execute(pan3d::object @panel) { ... panel.set_string("my_var1", "my_value"); ... } |