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

Sharing and custom messages not working

edited September 2017 in Questions And Answers

I'm attempting to highlight a model and then send message to other Hololens to show that highlight also. The highlight works on my device but does not turn to highlighted on the other devices.

Any idea where I'm going wrong?

private void HightlightCamShaft()
{
CustomMessages.Instance.SendHightlightCamShaft();
TheEnergyHub.GetComponent().HighlightCamShaft();
}

CustomMessages.cs

public void SendHightlightCamShaft()
{
// If we are connected to a session, broadcast our head info
if (this.serverConnection != null && this.serverConnection.IsConnected())
{
// Create an outgoing network message to contain all the info we want to send
NetworkOutMessage msg = CreateMessage((byte)TestMessageID.HightlightCamShaft);

        // Send the message as a broadcast, which will cause the server to forward it to all other users in the session.
        this.serverConnection.Broadcast(
            msg,
            MessagePriority.Immediate,
            MessageReliability.ReliableOrdered,
            MessageChannel.Avatar);
    }
}

EnergyHubBase.cs
public void HighlightCamShaft()
{
Color32 col = pCylinder13.gameObject.GetComponent().material.GetColor("_Color");
col.r = 229;
col.g = 253;
col.b = 0;
col.a = 100;

    pCylinder13.gameObject.GetComponent<Renderer>().material.SetColor("_Color", col);
    pCylinder14.gameObject.GetComponent<Renderer>().material.SetColor("_Color", col);
    pCylinder17.gameObject.GetComponent<Renderer>().material.SetColor("_Color", col);
    pCylinder19.gameObject.GetComponent<Renderer>().material.SetColor("_Color", col);
    pCylinder20.gameObject.GetComponent<Renderer>().material.SetColor("_Color", col);
}

Sorry but code '' are not working on this post.

Best Answer

Answers

  • Options

    Thanks for your help. I was missing this line like you sugested. CustomMessages.Instance.MessageHandlers[CustomMessages.TestMessageID.HightlightCamShaft] = this.OnHightlightCamShaft;

    Thanks a bunch!

  • Options

    @JD_Holo_Dev Hey,
    Can you tell me how you got the sharing working?

    I've been using the Hologram250 tutorial on Unity version 2017.2.0b11 so far.
    However it runs really unstable
    (the 2nd hololens always finds the first but only sometimes finds and displays the shared holograms)

    Which Hologram tutorial and Unity version did you use and most important: Does it run stable ?

    Thanks in advance

    CEO UniVRsitas

  • Options

    So i started with the GitHub 240 project. I changed out the energy hub with my own model. I tried from scratch and failed. Im only sharing one model for my project. I was just missing that one line to get changes to the model to show up. Noted above.

    I also had visual studio solution problems that i couldn't resolve until i upgraded from 5.6.1f to 2017.2.0b11

    my problem now is I stay on the light purple dot it hangs there never loads the models when im in different parts of my building.

    Works fine under my hotspot in my office.

Sign In or Register to comment.