Some new information about 3 table objects! (Enums, MultiLanguage and Obj) #29
lukas-runge
started this conversation in
Show and tell
Replies: 1 comment
-
That's how I originally came up with the list on the home page, something like this: local file, err = io.open(exportFilePath .. "globals.txt", "w+")
if file then
file:write(os.clock() .. "\n")
local count = 1
for k, v in pairs(_G) do
file:write(string.format("%s\n", k))
count = count + 1
end
io.close(file)
Printf("Wrote Globals to %s", exportFilePath)
SyncFS();
end I do have another function that iterates through classes, but I have to guess at their properties and methods, but sometimes you can find more info by going through the console structure and listing objects that look like they belong. I haven't have much time lately but I hope to get back to it soon. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I just noticed that 3 of the
_G
Variables from grandMA3 Lua API are not functions, but tables. I just added all knowledge I was able to gather about them to the wiki:What could those Objects be for? What may we be able to do with them?
Happy to hear your ideas! 🌟
Kind regards
@lukas-runge
Beta Was this translation helpful? Give feedback.
All reactions