Post

Replies

Boosts

Views

Activity

Reply to Symbol not found: _$sSo22CLLocationCoordinate2DVSE12CoreLocationMc when building for visionOS 2.5 with Xcode 16.3
Mine is fixed. It seems to be because apple suddenly generated their own version of codable for CLLocationCoordinate2D and this was conflicting. Examining CLLocationCoordinate2D showed that it was now marked as codable in the documentation. I removed my codable extension but it still didn't like it. but when I updated Xcode to the latest release version it went back to being non codable and everything is fine again.
May ’25
Reply to PlaneDetectionProvider on VisionOS seems to limit detection to planes less than5 m from world origin.
Well that's encouraging. I do have a reference to the ARKitSession. I am also running the world tracking provider at the same time so I can track the head. I wonder if that's changing things? I'm also running the 2.0 beta. This is how I originate the session try? await session.run([worldInfo, planeData]) but everything I get back in .task { for await update in planeData.anchorUpdates { } } seems to be filtered within 5 meters of the origin.
Topic: Spatial Computing SubTopic: ARKit Tags:
Oct ’24
Reply to Is it possible to keep the arSession alive after stopping roomCaptureSession
I have temporarily fixed this by saving a world map before I stop the roomScan session and then starting a new ARSession and immediately loading that world up again. It's clumsy but it works. I get a new arSession which fairly quickly snaps to the old origin. It would be nice to be able to just turn the room scanning off and keep the same arsession. Users will not understand why there's a jump and there's a chance they will lose it.
Topic: App & System Services SubTopic: General Tags:
Jul ’22