Is it possible to play RealityKit animation on iOS14 using the latest Xcode?

I cannot use entity's playAnimation() (https://developer.apple.com/documentation/realitykit/entity/3335123-playanimation), and I get an error message: 'playAnimation()' is only available in iOS 15.0 or newer. With the previous Xcode I could use this function for iOS14, but now I can only use it for iOS15 or newer.

Is there any way I can support this feature for iOS14?

Answered by Graphics and Games Engineer in 692894022

Hi, this is a known issue. Can you add in the values of transitionDuration: 0, startsPaused: false, recursive: true to your playAnimation call?

Accepted Answer

Hi, this is a known issue. Can you add in the values of transitionDuration: 0, startsPaused: false, recursive: true to your playAnimation call?

Is it possible to play RealityKit animation on iOS14 using the latest Xcode?
 
 
Q