GetAllEvent
Return all discovered events with their source resource.
Syntax
Susano.GetAllEvent() -> { { resource = "<string>", event = "<string>" }, ... }Parameters
Return(s)
Behavior
Example(s)
local all = Susano.GetAllEvent()
for i, ev in ipairs(all) do
print(("[%03d] %s :: %s"):format(i, ev.resource, ev.event))
end
print("total:", #all)Last updated