我正在从Web服务器下载collada文件,并希望以编程方式映射纹理,但SCNGeometry为零。任何人都可以提出建议吗?下面是示例代码。
let url = URL(string: "https://s3.amazonaws.com/path/to/dae.dae")!
let destination = DownloadRequest.suggestedDownloadDestination(for: .documentDirectory)
Alamofire.download(
url,
method: .get,
parameters: nil,
encoding: JSONEncoding.default,
headers: nil,
to: destination).downloadProgress(closure: { (progress) in
print(progress)
}).response(completionHandler: { (DefaultDownloadResponse) in
let path = DefaultDownloadResponse.destinationURL
let node = SCNReferenceNode(url: path!)
node?.load()
print(node)
print(node?.geometry)
self.sceneView.scene.rootNode.addChildNode(node!)
})
最佳答案
我找到了答案。 SCNReferenceNode包含一个节点数组,因此要分配纹理,您需要对其进行索引。
node?.childNodes.first?.geometry?.firstMaterial?.diffuse.contents = UIImage(named: "example.png")
关于swift - SCNReferenceNode中没有可用的SCNGeometry?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49829460/