---
title: didEvaluateActions()
framework: spritekit
role: symbol
role_heading: Instance Method
path: spritekit/skscene/didevaluateactions()
---

# didEvaluateActions()

Tells your app to peform any necessary logic after scene actions are evaluated.

## Declaration

```swift
func didEvaluateActions()
```

## Mentioned in

Responding to Frame-Cycle Events

## Discussion

Discussion Do not call this method directly; it is called by the system exactly once per frame, so long as the scene is presented in a view and is not paused. It is called after any actions have been evaluated by nodes in the scene but before any physics are simulated. Any additional actions applied are not evaluated until the next update.

## See Also

### Responding to Frame-Cycle Events

- [Responding to Frame-Cycle Events](spritekit/responding-to-frame-cycle-events.md)
- [update(_:)](spritekit/skscene/update(_:).md)
- [didSimulatePhysics()](spritekit/skscene/didsimulatephysics().md)
- [didApplyConstraints()](spritekit/skscene/didapplyconstraints().md)
- [didFinishUpdate()](spritekit/skscene/didfinishupdate().md)
