getrendersteppedlist
Gets callbacks registered through RunService:BindToRenderStep in the current Luau state.
Syntax
getrendersteppedlist() -> tableReturns
| Type | Description |
|---|---|
table | Array of render-step entries |
Description
getrendersteppedlist returns live BindToRenderStep callbacks owned by the current Luau state. Ordinary RenderStepped:Connect connections are not included.
Each entry has the following fields:
| Field | Type | Description |
|---|---|---|
Function | function? | Bound callback when it can be resolved |
Thread | thread? | Thread associated with the callback |
Name | string | Name passed to BindToRenderStep |
Priority | number | Render priority |
Example
local connections = getrendersteppedlist()
print("RenderStepped connections:", #connections)
for _, entry in ipairs(connections) do
print(entry.Name, entry.Priority, entry.Function, entry.Thread)
endRelated Functions
getconnections- Get connections for any signal