文件无法打开,版本太旧

时间:2017-08-03 15:21:52

标签: ios xcode scenekit

我想将粒子系统加载到我的ARKit应用程序中,但是当我尝试执行此操作时出现此错误:

[SceneKit] Error: This file cannot be opened (version is too old)

我使用此代码加载粒子(在SCNNode子类中):

init() {
    guard let url = Bundle.main.url(forResource: "Models.scnassets/particles/particles", withExtension: "scnp")
        else { fatalError("can't find expected virtual object bundle resources") }
    guard let node = SCNReferenceNode(url: url)
        else { fatalError("can't find expected virtual object bundle resources") }
    super.init()
    self.addChildNode(node)
}

我有来自ARKit演示应用程序(Apple)的代码。 particles.scnp是从Xcode模板Bokeh生成的。我有Xcode 9 beta 4,我的设备运行iOS 11 beta 4。

1 个答案:

答案 0 :(得分:3)

SCNReferenceNode只能引用场景文件。场景文件扩展名的示例包括daescn

.scnp文件是SCNParticleSystem的归档,因此无法使用。