Views
Talk:love.thread.getThreads
That ThreadArray it returns... is that userdata or just a plain old table? The docs seem a bit... vague on this point.
it returned a table of thread objects for me. --TechnoCat
function love.load() thread1 = love.thread.newThread("timer", "thread.lua") threads = love.thread.getThreads() print(threads.timer) end
output:
Thread