The Mixed Reality Forums here are no longer being used or maintained.
There are a few other places we would like to direct you to for support, both from Microsoft and from the community.
The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.
For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.
If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.
And always feel free to hit us up on Twitter @MxdRealityDev.
Loosing WorldAnchors when shifting from Unity editor to deployed version

Hi,
I'll try to summarize as clearly as possible our problem. We are currently designing our application with Unity editor in remote mode, in order to fine-place our holograms into the room and then attach world anchors to them.
Everything works like a charm, we place our objects, we change their position, we restart everything after days and all our holograms are there in the the correct place.
But (there's always a but...), we tried deploying the application to the device and then all our anchors disappeared. The anchor store is totally empty. We start again from the editor, the store includes our anchors.
So, first question is: when working with the editor in remote mode, where are the anchor stored? Apparently, not on the device (hololens) but locally. If this supposition is correct, how can we access them and possibly use them in the deployed version?
Second question. Given the previous problem, we tried to serialize (from editor remote mode) our world anchors through the WorldAnchorTransferBatch.ExportAsync function to save them into a binary file and open them in the deployed version. However, we always get a SerializationCompletionReason.AccessDenied result. The question is: is it possible to use anchor serialization in editor remote mode (or any other method to do a custom serialization)?
Concluding, what are we doing wrong?
Thanks in advance for any possible help
Answers
Hi all,
here attached you will find a script that allows to recreate the problem. You simply have to create a hololens project, add an empty object, give it a label and add the script to it. When the application starts, you will see a big sphere in front of you.
Then, you can place the game object (not the sphere) from the Editor in the desired position and, pressing 's' key, you can add a world anchor and save it. Press 'c' to clear the world anchor and change the object position. At startup, if the anchor has been saved, it is loaded and the world anchor is restored.
For debugging purposes, the sphere color reflects its state (white: sphere not locked, red: object anchor not loaded from the store, green: object anchor loaded from the store, blue: anchor not saved).
When starting the application in remote mode from the editor everything works (once saved, the object is locked in the correct position in the following launches), when the application is deployed (after having saved the anchor), the sphere starts in red color, highlighting that the anchor could not be loaded.
Again, any idea of what we are doing wrong?