---
title: nextFrameTime
framework: scenekit
role: symbol
role_heading: Instance Property
path: scenekit/scnrenderer/nextframetime
---

# nextFrameTime

The timestamp for the next frame to be rendered.

## Declaration

```swift
var nextFrameTime: CFTimeInterval { get }
```

## Discussion

Discussion If the renderer’s scene has any attached actions or animations, use this property to determine how long your app should wait before telling the renderer to draw another frame. If this property’s value matches that of the renderer’s currentTime property, the scene contains a continuous animation—schedule your next render at whatever time best maintains your app’s performance. If the value is infinite, the scene has no running actions or animations.
