Running your first application
Set-up
Project set-up
A Unity project for Microsoft Holographic platform isn’t very different to a Unity project for other platforms, with a few notable exceptions:
- Ensure that the Camera you intend to track the HoloLens device’s position is tagged as Main Camera in the Inspector window. The default Camera in the Scene should already be tagged appropriately.
- Set the Main Camera’s Background property to Solid Color rather than the defaulted Skybox. Set the background color to (0, 0, 0, 0).
- Use the Fastest Quality Settings in Edit > Project Settings > Quality. This maximizes performance and reduces power consumption. In particular, soft shadows and shadow cascades are too expensive to use on the HoloLens, and should be avoided.
- Enable the appropriate publishing flags based on which subsystems your application uses.
To learn more, see Microsoft’s documentation on Performance recommendations for Unity.
Publishing settings
The following capability flags are provided under Player Settings > Publishing Settings. System features fail if you don’t enable the appropriate capability flags.
Not all of the publishing settings below are specific to Windows Holographic. For more information, see Unity’s documentation on WSA Player Settings.
|
|
PicturesLibrary |
Required for PhotoCapture capture camera frame functionality. |
MusicLibrary |
Required for VideoCapture audio recording functionality. |
VideosLibrary |
Required for VideoCapture video recording functionality. |
WebCam |
Required for PhotoCapture and VideoCapture. |
Microphone |
Required for voice recognition. |
SpatialPerception |
Required for Spatial Mapping. |
Exporting a Visual Studio solution
Once you’ve built your project and are ready to test, export the project to a Visual Studio solution. To build for Windows Holographic, choose the following options under File > Build Setting:
- Platform: Universal Windows Platform
- UWP Build Type: D3D or XAML
-
Unity C# Projects (check this box)
Under Player Settings > Other Settings:
- Enable Virtual Reality Supported.
- Click the + button on the Virtual Reality Devices list and select Windows Holographic.
Checking the Unity C# Projects checkbox includes your scripting files in their own project in the generated solution. This allows you to conveniently edit and debug your scripts without needing to re-export from Unity. A re-export is only required if your project settings or content change.
See Microsoft’s documentation on Exporting and building a Unity Visual Studio solution for more details.
• 2017–05–16 Page amended with no editorial review
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Is something described here not working as you expect it to? It might be a Known Issue. Please check with the Issue Tracker at issuetracker.unity3d.com.
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thanks for helping to make the Unity documentation better!
Running your first application