Slow CADisplayLink Animation In Simulator

551 views Asked by At

I have two methods of achieving the same sprite animation:

  1. An UIImage that animates an array of 6 images using animatedImage(with:duration:).
  2. A UIView with its CALayer’s contents property set to a sprite atlas image—the layer’s contentsRect property is updated via a CADisplayLink. To ensure frame rate independence, I’m accumulating delta time (or displayLink.duration) until an image should change. When the image changes, I subtract the elapsed time needed for one image from the accumulated delta time and the cycle continues.

Both methods work great and look almost identical (if not identical) on my iPhone. However, when running in Simulator, #1 appears to animate at the device speed, while #2 appears to animate noticeably slower.

When comparing the FPS from my device and the simulator, the device averages around 59.9 to 60 FPS, while Simulator shows a constant 60 FPS; this doesn't account for #2 appearing to be noticeably slower.

So, why is #2 slower in Simulator?

Code for #1:

UIImage.animatedImage(with: spriteImages, duration: animationDuration)

Code for #2:

func update(_ seconds: TimeInterval) {
    accumulatedSeconds += seconds

    // `poseDuration` is `animationDuration / 6`.
    guard accumulatedSeconds >= poseDuration else { return }

    switch currentFrame {
    case 6:
        myView.layer.contentsRect = CGRect(x: 0, y: 0, width: width, height: 1)
        currentFrame = 1
    default:
        myView.layer.contentsRect = CGRect(x: width * Double(currentFrame), y: 0, width: width, height: 1)
        currentFrame += 1
    }

    accumulatedSeconds -= poseDuration
}
1

There are 1 answers

4
matt On BEST ANSWER

Basically, CADisplayLink doesn't work well in the simulator. Test on a device only.