作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试显示 reality
使用 Reality Composer
创建的文件.以下代码适用于 usdz
但不适用于 reality
.这是我的代码
struct ARViewContainer: UIViewRepresentable {
var modelConfirmedForPlacement: AnchorEntity?
func makeUIView(context: Context) -> ARView {
let arView = ARView(frame: .zero,
cameraMode: .ar,automaticallyConfigureSession: true)
let config = ARFaceTrackingConfiguration()
arView.session.run(config)
return arView
}
func updateUIView(_ uiView: ARView, context: Context) {
if let modelEntity = modelConfirmedForPlacement {
// Add the box anchor to the scene
uiView.scene.anchors.append(modelEntity)
}
}
}
// View 模型
final class ContentViewModel: ObservableObject {
@Published var modelConfirmedForPlacement: AnchorEntity?
private var cancellable: AnyCancellable? = nil
func updateModelEntity(path: String){
let url = URL(fileURLWithPath: path)
self.cancellable = AnchorEntity.loadAnchorAsync(contentsOf: url)
.sink(receiveCompletion: { loadCompletion in
if case let .failure(error) = loadCompletion {
print("Unable to load a model due to error \(error)")
}
self.cancellable?.cancel()
}, receiveValue: { modelEntity in
debugPrint("hereeeeeeeee")
self.modelConfirmedForPlacement = modelEntity
})
}
func loadFileSync(url: URL, completion: @escaping (String?, Error?) -> Void)
{
//load from network and save locally }
该文件确实在本地正确保存,但对于现实文件,它没有显示
File already exists [/var/mobile/Containers/Data/Application/880ED2EE-CCE7-4EE5-B854-0D1398650705/Documents/Experience.reality]
2021-07-25 16:29:09.060267+0530 RealityKitLoadModelFromNetwork[1352:474463] Metal GPU Frame Capture Enabled
2021-07-25 16:29:09.060478+0530 RealityKitLoadModelFromNetwork[1352:474463] Metal API Validation Enabled
最佳答案
上传 .reality
来自网络的模型工作正常。您可以在 Xcode Simulator 中轻松检查:
import UIKit
import RealityKit
class ViewController: UIViewController {
@IBOutlet var arView: ARView!
override func viewDidLoad() {
super.viewDidLoad()
let url = URL(string: "https://developer.apple.com/augmented-reality/quick-look/models/cosmonaut/CosmonautSuit_en.reality")
let documents = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
let destination = documents.appendingPathComponent(url!.lastPathComponent)
let session = URLSession(configuration: .default,
delegate: nil,
delegateQueue: nil)
var request = URLRequest(url: url!)
request.httpMethod = "GET"
let downloadTask = session.downloadTask(with: request, completionHandler: { (location: URL?,
response: URLResponse?,
error: Error?) -> Void in
let fileManager = FileManager.default
if fileManager.fileExists(atPath: destination.path) {
try! fileManager.removeItem(atPath: destination.path)
}
try! fileManager.moveItem(atPath: location!.path,
toPath: destination.path)
DispatchQueue.main.async {
do {
let model = try Entity.loadAnchor(contentsOf: destination)
self.arView.scene.addAnchor(model)
} catch {
print("Fail loading entity.")
}
}
})
downloadTask.resume()
}
}
关于swift - 显示来自网络的现实文件时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68517968/
笙歌 痞性. 剩余 青怏 洒脱 现实 搁浅° 软萌 路途 娼妓 离骚 逐你 微尘 迷魂 ▼ 扎心 堇夏 残年っ ╭淡妆╮ 24K.纯疯 隐痛
我正在尝试不费吹灰之力地实现完全有效的持久性无知。不过我有很多问题: 最简单的选项 这真的很简单——可以像在 SOA 中那样使用 Spring Data 注释对实体进行注释(但让它们真正执行逻辑)?除
我想完成一项简单的任务。 我在可变宽度容器中有一个图像。 容器的宽度可以为 300、400、700 或 900 像素。这是通过媒体查询完成的图像应占据该容器的所有宽度。所以它也将是 300、400、7
我在使用 Storyboards AutoRotation 和 iPhone 时遇到问题。我已经将一个非常简单的项目与 3 个 View Controller 放在一起,并将其上传到 gitHub 以
我是一名优秀的程序员,十分优秀!