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

Howto use Holotoolkit SyncModel

Hi all,
I'm trying to use the syncmodel implemented in holotoolkit but with no success. Where can I found some documentation about it?

Following my current tests:

Environment:
Unity version: 2017.2.0f3
Holotoolkit: MixedRealityToolkit for Unity 2017.2.0p1 MRTP4

Running scripts:
SharingStage
SharingWorldAnchorManager
InputManager (prefab)
SpatialMapping (prefab)
TapToPlace

Actions done:
Edited SyncRoot.cs to add a new field:
[SyncData]
public SyncBool sharedInformationVisibility;

Added field initialization to SyncRoot.InitializeDataModel():
sharedInformationVisibility.InitializeLocal(Element);

Expected behavior:
Changing the value of the SyncBool object in the game on Hololens1 with
SharingStage.Instance.Root.sharedInformationVisibility.Value = true;
obtaining the new value on Hololens2:
SharingStage.Instance.Root.sharedInformationVisibility.Value == true

Obtained behavior:
Changing the value of the SyncBool object in the game on Hololens1 with
SharingStage.Instance.Root.sharedInformationVisibility.Value = true;
value on Hololens2 do not change:
SharingStage.Instance.Root.sharedInformationVisibility.Value == false

Sign In or Register to comment.