Sets value of a specific variable as a 32bit signed integer.
Syntax |
void set_int32(const string &in name, int32 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_int32("item1.flags", 0x1000ff); ... } |