Orion Solutions Docs
ORION SOLUTIONS LUA API

Draw

Called from the Orion Solutions rendering path.

callbacks.add("Draw", function() end)

Example

local printed = false

callbacks.add("Draw", function()
    if printed then
        return
    end

    printed = true
    print("Draw fired")
end)