Contents

didEvaluateActions(for:)

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

Declaration

optional func didEvaluateActions(for scene: SKScene)

Parameters

  • scene:

    The scene that is being animated.

Mentioned in

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

Handling Animation Events