Use azure spatial anchor to position your layout in Unity-Hololens

274 Views Asked by At

I am trying to find a way to position my layout when I am detecting a spatial anchor in my Unity-Hololens application. I am currently running quickstarts > MRTK. The app is detecting my uploaded anchor. How can I position the other objects in my scene after detection?

2

There are 2 best solutions below

0
On

If you need to store some additional information related to the anchor you can use properties of CloudSpatialAnchor. Here is a link to ASA documentation related to it: CloudSpatialAnchor.AppProperties Property

It a nutshell it’s a key-value store for any data that is specific to an application. In this sample application it is used to store object shape information: CreationFragment.cs

You can store scene relative transform as a property of an anchor and then retrieve it from the cloud.

0
On

One way is to create a root object and use as a scene origin. Procedure is like:

  1. Create a root object in your scene and parent all the objects to this one.
  2. When you create ASA anchor, attach CloudNativeAnchor to this object and save it.
  3. In the loading scenario, you can create (or move) your root object with the position and rotation from the found ASA anchor. All the child objects will position accordingly.