# InvokeOnRenderObjectCallbacks()

> Schedules an invocation of the OnRenderObject callback for MonoBehaviour scripts.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Rendering](/engine/6000.6/script-reference/unityengine/rendering.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public void InvokeOnRenderObjectCallbacks()
```

### Remarks

This method triggers [MonoBehaviour.OnRenderObject()](/engine/6000.6/script-reference/unityengine/monobehaviour/onrenderobject.md). Call this function to issue the OnRenderObject callback from your render pipeline. You should typically call this function after the Camera renders the Scene but before adding post-processing. This command is essentially the same to [ScriptableRenderContext.InvokeOnRenderObjectCallback](/engine/6000.6/script-reference/unityengine/rendering/scriptablerendercontext/invokeonrenderobjectcallback.md).
