https://github.com/Microsoft/MRDesignLabs_Unity_Tools
This repository contains the tools leveraged for our Mixed Reality Design Lab examples in Unity.
https://github.com/Microsoft/MRDesignLabs_Unity_Tools
Last synced: about 2 months ago
JSON representation
This repository contains the tools leveraged for our Mixed Reality Design Lab examples in Unity.
- Host: GitHub
- URL: https://github.com/Microsoft/MRDesignLabs_Unity_Tools
- Owner: microsoft
- License: mit
- Archived: true
- Created: 2017-06-26T22:55:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T20:27:44.000Z (almost 2 years ago)
- Last Synced: 2025-03-13T01:21:22.176Z (about 2 months ago)
- Language: C#
- Size: 35.9 MB
- Stars: 61
- Watchers: 17
- Forks: 29
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# MRDL Unity Tools
This repo is where Microsoft's Windows Mixed Reality Design team publishes the Unity tools we use in examples and explorations. These set of tools have been separated into this repo for easy inclusion in your project or repo. This tools repository is now used as a submodule throughout our MRDesignLabs examples.# Including as a SubModule
The simplest way to add the tools to your project is via a submodule. This will create and internal link within your repo to the *MRDesignLab* set of tools.To do this simply navigate to your Assets folder in your project and use:
* git submodule add https://github.com/Microsoft/MRDesignLabs_Unity_Tools.git ./MRDesignLab
This will create the submodule for Mixed Reality Design Labs Unity tools and allow you to stay up to date with changes to the base toolset or decide not to integrate newer changes.# Upgrading the Submodule
To upgrade the submodule you'll want to do the following to sync to head, pull and commit:
* git submodule foreach git checkout HEAD
* git submodule foreach git pull
* git add .
This should checkout the individual submodules to the latest revision and pull the content. You will see that they have new changes if you do **git status** in the main repository. Then you simply add the submodule directories and commit. Note that you can also decide to sycn a submodule to a specific commit based on your projects dependencies.# Contributing
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.