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 see Text in Front of you

Hey

in this Tutorial: https://unity3d.com/learn/tutorials/projects/roll-ball-tutorial/displaying-score-and-text?playlist=17141

they teach how to see Text in Front of you.

Shouldn't it be possible to do the same thing with the Hololens?

I tried it, but I can't see anything.

Best Answers

  • Options
    FrimyFrimy
    Answer ✓

    If you apply a 3D Text Shader on a material you add to your text mesh, your text will be displayed in front of everything, even in front of the Spatial Mapping.

    If you need more informations (not hololens specific) you can try this link: http://wiki.unity3d.com/index.php?title=3DText

  • Options
    DanielFDanielF
    Answer ✓

    Make sure the Canvas component is set to be in world space mode, not in screen space and set the event camera to be the main camera.
    Then, ensure that the Canvas is properly scaled (I usually take something between 0.005 and 0.01).
    Last but not least, make sure the UI components are actually in front of the camera. Usually, 2 units (approx. 2 meters) is a good distance.

Answers

  • Options
    FrimyFrimy
    Answer ✓

    If you apply a 3D Text Shader on a material you add to your text mesh, your text will be displayed in front of everything, even in front of the Spatial Mapping.

    If you need more informations (not hololens specific) you can try this link: http://wiki.unity3d.com/index.php?title=3DText

  • Options
    DanielFDanielF
    Answer ✓

    Make sure the Canvas component is set to be in world space mode, not in screen space and set the event camera to be the main camera.
    Then, ensure that the Canvas is properly scaled (I usually take something between 0.005 and 0.01).
    Last but not least, make sure the UI components are actually in front of the camera. Usually, 2 units (approx. 2 meters) is a good distance.

Sign In or Register to comment.