didSimulatePhysics(for:)
Tells you to peform any necessary logic after physics simulations are performed.
Declaration
optional func didSimulatePhysics(for scene: SKScene)Parameters
- scene:
The scene that is being animated.
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 physics has been simulated in the scene.
Any additional actions applied are not evaluated until the next update.
Any changes to physics bodies are not simulated until the next update.