Query value of a specific variable as an unsigned 32bit integer.
Syntax |
uint32 get_uint32(const string &in name) |
---|---|
name |
Variable name |
Result |
Return value read |
Notes |
For more information about the variable, see the section on default variables. |
Example of use:
bool execute(pan3d::object @panel) { ... uint32 v1 = panel.get_uint32("item1.flags"); ... } |