<!--
{
  "availability" : [
    "iOS: 8.0.0 - 26.0.0",
    "iPadOS: 8.0.0 - 26.0.0",
    "macCatalyst: 13.1.0 - 26.0.0",
    "macOS: 10.8.0 - 26.0.0",
    "tvOS: 9.0.0 - 26.0.0",
    "visionOS: 1.0.0 - 26.0.0",
    "watchOS: 3.0.0 - 26.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SceneKit",
  "identifier" : "/documentation/SceneKit/SCNSceneRendererDelegate/renderer(_:willRenderScene:atTime:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SceneKit"
    ],
    "preciseIdentifier" : "c:objc(pl)SCNSceneRendererDelegate(im)renderer:willRenderScene:atTime:"
  },
  "title" : "renderer(_:willRenderScene:atTime:)"
}
-->

# renderer(_:willRenderScene:atTime:)

Tells the delegate that the renderer has cleared the viewport and is about to render the scene.

```
optional func renderer(_ renderer: any SCNSceneRenderer, willRenderScene scene: SCNScene, atTime time: TimeInterval)
```

## Parameters

`renderer`

The SceneKit object responsible for rendering the scene. Examine this object’s [`context`](/documentation/SceneKit/SCNSceneRenderer/context) property if you need to reference the OpenGL context that your custom rendering code draws into.

`scene`

The `SCNScene` object to be rendered.

`time`

The current system time, in seconds. If your custom rendering involves animation, use this parameter to compute your own animation state.

## Discussion

Implement this method to perform custom drawing before SceneKit renders a scene—for example, to draw backdrop content underneath SceneKit content. You should only execute Metal or OpenGL drawing commands (and any setup required to perform them) in this method—the results of modifying SceneKit objects during this method are undefined.

- To render using Metal, use the `renderer` parameter to retrieve the scene renderer’s [`currentRenderCommandEncoder`](/documentation/SceneKit/SCNSceneRenderer/currentRenderCommandEncoder) object and encode your own drawing commands. If you need to reference other Metal state, see the properties listed in [`SCNSceneRenderer`](/documentation/SceneKit/SCNSceneRenderer).
- To render using OpenGL, simply call the relevant OpenGL drawing commands—SceneKit automatically makes its OpenGL context the current context before calling this method. If you need to reference the OpenGL context being rendered into, examine the [`context`](/documentation/SceneKit/SCNSceneRenderer/context) property of the `renderer` parameter.

You must draw using the appropriate graphics technology for the view currently being rendered. Use the [`renderingAPI`](/documentation/SceneKit/SCNSceneRenderer/renderingAPI) property of the `renderer` object to determine whether Metal or OpenGL is in use.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)