azure-spatial-anchors

HOW do Unity World Anchors work on the HoloLens?

我与影子孤独终老i 提交于 2020-12-06 07:28:11
问题 I'm currently building a HoloLens application and have a feature in-mind that requires holograms to be dynamically created, placed, and to persist between sessions. Those holograms don't need to be shared between devices. I've had a nightmare trying to find (working) implementations and documentation for Unity WorldAnchors, with Azure Spatial Anchors seeming to stomp out most traces of it. Thankfully I've gotten past that and have managed to implement WorldAnchors by using the older

HOW do Unity World Anchors work on the HoloLens?

試著忘記壹切 提交于 2020-12-06 07:28:11
问题 I'm currently building a HoloLens application and have a feature in-mind that requires holograms to be dynamically created, placed, and to persist between sessions. Those holograms don't need to be shared between devices. I've had a nightmare trying to find (working) implementations and documentation for Unity WorldAnchors, with Azure Spatial Anchors seeming to stomp out most traces of it. Thankfully I've gotten past that and have managed to implement WorldAnchors by using the older

Is it possible to see and manage Azure Spatial Anchors online?

情到浓时终转凉″ 提交于 2020-06-17 15:03:49
问题 Is it possible to see the list of the created Azure Spatial Anchors, and delete the useless ones? I know that we can set the expire day for anchors but in my case we 'd need to create permanent anchors but we want to be able to delete them when they are not needed. 回答1: As of June 2020, neither the SDK nor the Azure Portal provide a way to enumerate the anchors that you have created in the system. This feature is in the roadmap but it’s not available yet. Today you need to managed the list

Update a Microsoft AzureSpatialAnchor not possible

女生的网名这么多〃 提交于 2020-01-14 05:40:25
问题 I develop an unity application an I am working with azure spatial anchors. I found no possibility to update a already existing cloudAnchor. I tried this: protected virtual async Task SaveCurrentObjectAnchorToCloudAsync() { // Get the cloud-native anchor behavior CloudNativeAnchor cna = cubeInstance.GetComponent<CloudNativeAnchor>(); // If the cloud portion of the anchor hasn't been created yet, create it if (cna.CloudAnchor == null) { cna.NativeToCloud(); } // Get the cloud portion of the

Can a saved Azure Spatial Anchor be saved(updated) again?

时光毁灭记忆、已成空白 提交于 2020-01-05 04:03:37
问题 I am wondering whether it is possible to 'update' a saved Azure Spatial Anchor. I created an anchor, saved it, then close the session, then start a new session, as I have the reference to the saved anchor(CloudSpatialAnchor object), I saved the anchor again in a different position, then I got this Exception: So, I assume it is not allowed to 'update' an anchor, the official document didn't mention it. If I get it right, we need to delete the anchor and then create a new one in the different

Using a custom web server for sharing Anchor IDs doesn't work

人盡茶涼 提交于 2019-12-23 05:25:16
问题 I'm trying to use my own Python cgi script to store and serve Anchor IDs. Everything worked with the Swagger Sharing Server from the samples repository but somehow when I switch to my Python server I get an Error and the app is stuck looking for the anchor. What I'm doing is, I assume, exactly the same the Swagger Script does: I send the Anchor ID to the server and return an Anchor number to be able to request the ID later again. As far as I understood the ID needs to be exchanged as a string