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

Synchronize childrens transform in synchronized prefab.

Hi,

currently i am working on a shared experience app.

I came into trouble when trying to use the HoloToolkit and synchronize a prefab's children transforms. I am using the PrefabSpawnManager from the toolkit and built an own SpawnManager on top of it.

I tried to apply the ISyncModelAccessor, the SyncSpawnedObject as DataModel and the TransformSynchronizer to the children GameObjects but it did not solve the problem.

Any suggestions or links i should take a look?

Thanks in advance.

Best Answer

  • Options
    PatrischPatrisch
    Answer ✓

    For anybody who is interested:

    My solution ended up by inheriting from PrefabSpawnManager and making my own Methods:

    • spawnAll (calling PrefabSpawnManager's Spawn method and then SpawnChildren)
    • spawnChildren (Prefab is already instantiated - so iterate through all its children, and initialize them)
    • InitializeChildren (create a "ChildDataModel" - mapped with a dummyObject in PrefabSpawnManager then bind model and already created children and add it to SyncSource)
    • overridden CreatePrefabInstance (if the dataModel is not a "ChildDataModel" use Default prefab creation of PrefabSpawnManager, otherwise bind the dataModel to the child)

Answers

  • Options
    PatrischPatrisch
    Answer ✓

    For anybody who is interested:

    My solution ended up by inheriting from PrefabSpawnManager and making my own Methods:

    • spawnAll (calling PrefabSpawnManager's Spawn method and then SpawnChildren)
    • spawnChildren (Prefab is already instantiated - so iterate through all its children, and initialize them)
    • InitializeChildren (create a "ChildDataModel" - mapped with a dummyObject in PrefabSpawnManager then bind model and already created children and add it to SyncSource)
    • overridden CreatePrefabInstance (if the dataModel is not a "ChildDataModel" use Default prefab creation of PrefabSpawnManager, otherwise bind the dataModel to the child)
Sign In or Register to comment.