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

Hands tracking in 2D context

Hi,

I try to use the hands tracking to interact with a 2D app (like Edge) on HoloLens.

I would like to know if it's possible to get the hands position programmatically just with a 2D XAML app ?

Thanks in advance

Answers

  • Options
    dbarrettdbarrett ✭✭✭

    Honestly, I've haven't really tried doing anything like this. Have you tried implementing the ISourceStateHandler?

    You can get position inside of there by doing something like this in the OnSourceDetected method:

    Vector3 position; eventData.InputSource.TryGetPointerPosition(eventData.SourceId, out position);

    AR Developer

  • Options

    @dbarrett,
    Thanks for your quick answer.
    I tried your suggestion, but to use those functions I need the MixedRealityToolkit and it seems not to work with a windowed app ?
    Sorry, i'm fairly new to HoloLens development.

  • Options
    dbarrettdbarrett ✭✭✭

    I've never made a XAML app so I had no idea whether or not it would work. Sorry, if you can't use the MRTK then I don't think it is possible. However, there is a prefab in the MRTK to make an occluded window sort of similar to the view you would get with an XAML app except you wouldn't be on the HoloShell and instead just be inside a D3D app. You may try looking into that?

    AR Developer

Sign In or Register to comment.