Type Library Revision Release 2024.3703 Keywords global, globals
The (globals) section covers basic functions of Lua 5.1 which is the underlying programming language of Solar2D. All of the functions and objects listed below can be called as is (without a prefix). For example:
globals.rawget() -- incorrect; will produce an error rawget() -- correct
_G
is a global variable (not a function) that holds the global environment, that is, _G._G
= _G
. Lua itself does not use this variable; changing its value does not affect any environment, nor