We are also experiencing this even with a small number of dynamic models interacting with the scene mesh and are unable to find a stable fix.
Post
Replies
Boosts
Views
Activity
It's strange and inconsistent that requesting permissions can display alerts from volumetric contexts just fine but displaying a purchase screen (or rating prompt) isn't possible without a window. I hope this is improved upon in the future so we don't have to break immersion with windows!
Also experiencing this. I isolating the issue to some recent Firebase pod changes. In my case moving from 10.17.0 to 10.24.0 but haven't figured out anything further.
As far as I can tell this big change went undocumented but the way attachments work completely changed:
Old:
RealityView { content, attachments in
content.add(Entity())
} attachments: {
Text("Hello")
.tag("h1")
}
New:
RealityView { content, attachments in
content.add(Entity())
} attachments: {
Attachment(id: "h1") {
Text("Hello")
}
}
Definitely an improvement but I hope it get’s added to the change log soon! Or at least get’s a helpful warning in the next Xcode! (edited)
No XR background, just iOS :)