re: FB9643162: Feedback Assistant (FA) is failing to upload the xcode project. It also fails to upload a simple .rcproject. FA is also buggy and needs dev love:)
Post
Replies
Boosts
Views
Activity
ok. I will upload the helloAR app in a few minutes that reproduces this problem. The app is about the simplest thing you can do, yet reproduces the bug.
here is the newly submitted FB number for the bug in this forum subject: FB9643162
re: FB9622407: just attached an example .rcproject that breaks RC export to usdz.
Awesome response on my Feedback numbers status, thanks so much!
FB9622407 - I will upload a Scene. My scenes are fairly large and complex (lots of objects and behaviors), expecting that the root cause is something involving the complexity of my models.
Feedback numbers:
FB9631966
FB9622407
FB9622398
FB9570859
`import SwiftUI
import RealityKit
struct ContentView : View {
var body: some View {
return ARViewContainer().edgesIgnoringSafeArea(.all)
}
}
struct ARViewContainer: UIViewRepresentable {
func makeUIView(context: Context) -> ARView {
let arView = ARView(frame: .zero)
// Load the "Box" scene from the "Experience" Reality File
let boxAnchor = try! Experience.loadBox()
// Add the box anchor to the scene
arView.scene.anchors.append(boxAnchor)
//boxAnchor.notifications.b0.post()
//boxAnchor.steelBox?.isEnabled = false
let seconds = 4.0
DispatchQueue.main.asyncAfter(deadline: .now() + seconds) {
boxAnchor.steelBox?.isEnabled = true
}
return arView
}
func updateUIView(_ uiView: ARView, context: Context) {}
}`
RC:
[object Object]
no one ever acknowledges my bug reports in Feedback Assistant. Have submitted several on Reality Composer and RealityKit.