Post

Replies

Boosts

Views

Activity

Reply to ARKit for BIM
Yes it is possible. Treat bar codes as image anchors. Load the identifiable images based on location. Affix your 3D models to entities attached to the detected image anchors. https://developer.apple.com/documentation/arkit/arkit_in_ios/content_anchors/detecting_images_in_an_ar_experience?cmdf=arkit%20image%20anchor
Topic: Spatial Computing SubTopic: ARKit Tags:
Feb ’24
Reply to How to get SceneKit to update a nodes orientation based on values that update in real time without lagging or stuttering
in UIViewRepresentable.updateUIView, you shouldn't be reloading the scene from disk on each update. that seems expensive if that doesn't make an impact, I'm not familiar with using SceneKit with SwiftUI, so not sure how UIViewRepresentable.updateUIView works with/against a typical SceneRenderDelegate.updateAtTime implementation. fwiw.
Topic: Graphics & Games SubTopic: SceneKit Tags:
Jan ’24
Reply to Follow the body
in visionOS v1.0, full body tracking is not exposed to third party developers. Hand tracking can be requested. https://developer.apple.com/documentation/arkit/handtrackingprovider/?cmdf=visionOS%20hand%20tracking
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jan ’24
Reply to DrawableQueue to RealityKit ShaderGraphMaterial ignoring alpha channel of texture?
I would love to see some sample code showing how you're generating a dynamic texture with DrawableQueue! That said, I can see from the image that your sending UsdUVTexture.RGBA, which has 4 components, to UnlitSurface.Color, which only takes in 3 components. You need to split the RGBA out, then pass the first three into Color, and the last into Opacity.
Topic: Graphics & Games SubTopic: General Tags:
Dec ’23