Version: 2017.3
Windows Mixed Reality: Hardware and software requirements
Windows Mixed Reality input and interaction concepts

Windows Mixed Reality: Quick start guide

Windows Mixed Reality (WMR) applications are Universal Windows Applications, and follow the same general guidelines as other Windows Store applications. The development environment is Visual Studio 2017, and does not require an additional SDK installation (Visual Studio installs the necessary SDKs).

Installing required tools

You must install a number of tools on your PC and headset before you can develop Windows Mixed Reality applications. These tools include:

To ensure that you install all of the required tools for developing Windows Mixed Reality applications (on both HoloLens and immersive headsets) follow the instructions from Microsoft’s documentation on Installing the Tools .

For detailed information on developing for Windows Mixed Reality, see Microsoft’s WMR documentation.

After you have installed the required tools, follow the short guide below to set up a Unity project and publish on Windows Mixed Reality devices.

Project set up

A Unity project for Windows Mixed Reality is very similar to a Unity project for other platforms, with a few notable exceptions. To fully support Windows Mixed Reality features, you need to change camera, performance and publishing settings as outlined in the following sections.

Camera settings

Ensure that the Tag for the Camera you intend to use to track the HMD’s position is set to MainCamera. To check this, select the Camera you want to use, and in the Inspector window, see the Tag drop-down. Unity automatically applies this tag to the default Camera in the Scene.

Camera settings for HoloLens
Camera settings for HoloLens

For HoloLens , set the Clear Flags property of the Main Camera to Solid Color rather than the default Skybox, and set the Background color to black (R = 0, G = 0, B = 0, A = 0). You should also make sure the Camera’s Transform position is set to (0, 0, 0).

Performance settings

For HoloLens only, use the Fastest quality setting in Edit > Project Settings > Quality. This maximizes performance and reduces power consumption. In particular, avoid soft shadows and shadow cascades, because they require too many resources to use on the HoloLens.

Setting quality settings for HoloLens
Setting quality settings for HoloLens

To learn more about optimizing your Windows Mixed Reality application, see Microsoft’s documentation on Performance recommendations for Unity.

Publishing settings

To enable important system capabilities for a Windows Mixed Reality application, go to Player Settings > Publishing Settings and check the box for each option you want to use from the Capabilities list.

System capability settings found in Player Settings > Publishing Settings
System capability settings found in Player Settings > Publishing Settings

Note: Not all of the publishing settings in the Capabilities list are specific to Windows Mixed Reality. For more information, see WSA Player Settings.

The following table describes the important capability settings for publishing Windows Mixed Reality applications:

Capability Setting Immersive headset support HoloLens
support
Description
InternetClient Y Y Provides access to your Internet connection for outgoing connections to the Internet. WMR requires this for voice recognition.
InternetClientServer Y Y Provides access to your Internet connection, including incoming unsolicited connections from the Internet. The app can send information to or from your computer through a firewall. WMR requires this for voice recognition.
Note: If this is active, you don’t need to use InternetClient.
MusicLibrary Y N Provides access to your music library and playlists, including the capability to add, change, or delete files. This allows you to use VideoCapture audio recording functionality in your WMR app.
PicturesLibrary Y Y Allows you to use PhotoCapture capture camera frame functionality in your app.
VideosLibrary Y N Allows you to use VideoCapture video recording functionality in your app.
WebCam Y Y Allows you to use PhotoCapture and VideoCapture functionality in your app.
Microphone Y Y Allows you to use voice recognition functionality in your app.
Bluetooth Y Y Enables bluetooth communication in your app. WMR requires this to allow you to use Windows Mixed Reality spatial controllers.
SpatialPerception N Y Allows you to use Spatial Mapping in your app.

For more detail on these capabilities, see the Microsoft documentation.

Exporting a Visual Studio solution

When you have created your project and are ready to test it, export the project to a Visual Studio solution. To deploy your WMR application you must first build a Visual Studio solution with Unity.

Go to File > Build Settings and select Universal Windows Platform from the Platform list. Now click the Switch Platform button at the bottom left of the window to configure the Editor to build for Windows.

Build Settings window showing Universal Windows Platform default settings
Build Settings window showing Universal Windows Platform default settings

For a standard build, the default settings work correctly for Windows Mixed Reality immersive headsets.

To build for HoloLens, you should change the Target Device setting to HoloLens.

The table below provides a list of the Build Settings available for the Universal Windows Platform and describes their usage.

Setting Description
Target Device Choose Any Device to build for immersive headsets and HoloLens to build for HoloLens. This is important for optimisation.
Build Type Choose from D3D (Direct3D) or XAML.
D3D Gives faster results than XAML because there is no XAML layer in the app. This builds the app in 3D exclusive space, and you can’t switch to a 2D XAML app or modify this after generation.
XAML Adds an XAML code layer over the app, which allows the user to switch from the 3D app and open a 2D app. XAML code can be modified after generation. The most common example of this is using a touch keyboard for the HoloLens.
SDK Select the specific version of Windows 10 SDK your app uses. This is set to Latest installed by default.
Visual Studio Version Select the specific version of Visual Studio to generate a solution (.sln) for. This is set to Latest installed by default, which is the recommended setting if you have Visual Studio 2017 installed.
Build and Run on Choose which device your application runs on when you click the Build and Run button. This is set to Local Machine by default, and you should not need to change this.
Note: Unity ignores this option when you click the Build button.
Copy References Enables copying of UnityPlayer.dll, associated dlls and data to the generated solution folder instead of referencing them directly from Unity installation folder. This requires extra space, but enables the generated solution to be portable (you can copy it to another machine and build it even if Unity is not installed on that machine).
Unity C# Projects Allows inclusion of the scripting files from your project in the generated solution. This setting is only available when you set the Scripting Backend to .NET.
Development Build Unlocks debug features and allows developers to test and debug built projects. This allows you to connect the built project to the Unity profiler, and provides other development features such as more verbose debug log outputs. Enabling this setting also makes the Scripts Only Build and Autoconnect Profiler settings available.
Autoconnect Profiler Allow Unity’s built-in profiler to automatically connect to the build. This is only available when Development Build is enabled.
Scripts Only Build Build only the scripts of a project. This is only available when Development Build is enabled.

Before you can build your app, you should configure your Player Settings to build Windows Mixed Reality applications correctly:

  1. From the Build Settings window, click Player Settings > XR Settings.

  2. Enable Virtual Reality Supported.

  3. Click the + button on the Virtual Reality Devices list and select Windows Mixed Reality.

After you have configured your Build Settings, click the Build button. Build your project to a new folder and remember the location.

To deploy your app from Visual Studio, do the following:

  1. In Visual Studio, open the generated solution file (.sln) located inside the folder where you built your project.

  2. In the main Visual Studio taskbar (left to right in image below), change the target platform for your solution, and select which device to run the solution on.

  3. Click the dropdown arrow on the right of the Run button (marked by a green arrowhead) and a list of possible devices will appear.

There are four main options to test and run your Windows Mixed Reality application from Visual Studio:

  • Local Machine
  • Remote Machine
  • Device
  • HoloLens Emulator

The sections below describe these options in more detail. Not all of these options work for all WMR devices; some are specific to HoloLens or immersive headsets.

Local Machine (immersive headsets only)

Local Machine allows you to build your application and install it to the Mixed Reality Portal on your Windows 10 PC. When built, your app automatically runs on your PC, and you can test it through your immersive headset.

You can launch your application again at any time through the Start menu from the Mixed Reality Portal.

Remote Machine (HoloLens only)

Remote Machine prompts you to enter the IP address of the HoloLens or other headset you wish deploy to. When you click Run with Remote Machine selected, a dialog box asks you for a PIN for the device.

To get this PIN:

  1. Switch on your HoloLens and go to HoloLens Settings.

  2. Select the For Developers tab and enable Developer Mode using the provided toggle button.

  3. Select the Pair button to get the PIN and enter it into Visual Studio in the popup box.

Your application remote installs onto your HoloLens and, when the build process is complete, runs on the device automatically.

Device (HoloLens only)

Device allows you to build your Visual Studio project and deploy it to a HoloLens device connected to your PC via a USB cable.

When you click Run, Visual Studio builds the project, installs the app on the connected HoloLens, and runs on the device automatically once the build process is complete.

HoloLens Emulator (HoloLens only)

HoloLens Emulator allows you to build the Visual Studio project and run the app on an installed HoloLens emulator. This emulator lets you test your app and simulate gestures and other inputs on your PC before you deploy it to a HoloLens device.

Including Scripts in your generated solution (optional)

Tick the Unity C# Projects checkbox to include the scripting files from your project in the generated solution. This allows you to edit and debug your scripts without needing to re-export from Unity. You only need to re-export when your project settings or content change. This setting is only available when you set the Scripting Backend to .NET.

You can use either IL2CPP or .NET scripting backends for your application. To change the Scripting Backend, go to Player Settings > Other Settings and select the relevant backend in the Configuration section.

For more information on ILCPP, see Unity’s documentation on How IL2CCP works.

For more information on building to Windows Mixed Reality devices, see Microsoft’s documentation on Exporting and building a Unity Visual Studio solution.


  • 2018–03–27 Page published with editorial review

  • New content added for XR API changes in 2017.3

Windows Mixed Reality: Hardware and software requirements
Windows Mixed Reality input and interaction concepts