我想将粒子系统加载到我的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。
答案 0 :(得分:3)
SCNReferenceNode
只能引用场景文件。场景文件扩展名的示例包括dae
和scn
。
.scnp
文件是SCNParticleSystem
的归档,因此无法使用。