Hello everyone.

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.
Options

How to open an asset bundle that is stored in hololens local Storage(KnownFolders->3D Objects)?

static async public void read_lines(byte[] bytes)
{
StorageFolder storageFolder = KnownFolders.Objects3D;
StorageFile file = await storageFolder.CreateFileAsync("Model.unity3d", CreationCollisionOption.ReplaceExisting);
await FileIO.WriteBytesAsync(file, bytes);
}

using the above script , I'm able to write the data to the local storage and save it. But I'm not able to retrieve the data from the saved folder. Its showing like it can read only text files. Kindly help me solve this issue...

Tagged:
Sign In or Register to comment.