Skip to content

Commit 24caf0c

Browse files
Check in of initial documentation
1 parent 3a41e21 commit 24caf0c

22 files changed

+487
-0
lines changed

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*.cs text diff=csharp
2+
.gitattributes text
3+
*.txt text
4+
*.md text
5+
6+
*.asset eol=lf
7+
*.controller eol=lf
8+
*.prefab eol=lf
9+
*.meta eol=lf
10+
*.mat eol=lf
11+
*.anim eol=lf

CONTRIBUTING.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Contributing
2+
3+
The Mixed Reality Toolkit welcomes contributions from the community.
4+
If you have any questions, please reach out on the [HoloLens forums](https://forums.hololens.com/).
5+
6+
# Process
7+
8+
1. [Make a proposal](https://github.com/Microsoft/MixedRealityToolkit-Unity/issues) (either new, or for one of the elements in our backlog)
9+
2. Implement the proposal and its tests.
10+
3. Rebase commits to tell a compelling story.
11+
4. Start a pull request & address comments.
12+
5. Merge.
13+
14+
# Proposal
15+
16+
For things like fixing typos and small bug fixes, you can skip this step.
17+
18+
If your change is more than a simple fix, please don't just create a big pull request.
19+
Instead, start by [opening an issue](https://github.com/Microsoft/MixedRealityToolkit-Unity/issues) describing the problem you want to solve and how you plan to approach the problem.
20+
This will let us have a brief discussion about the problem and, hopefully, identify some potential pitfalls before too much time is spent.
21+
22+
Note: If you wish to work on something that already exists on our backlog, you can use that work item as your proposal.
23+
24+
# Implementation
25+
26+
1. Fork the repository. Click on the "Fork" button on the top right of the page and follow the flow.
27+
2. If your work needs more time, the consider branching off of master else just code in your fork.
28+
3. Instructions for getting the project building and running the tests are in the [README](README.md).
29+
4. Make small and frequent commits that include tests which could be a unity scene showing usage of your feature.
30+
5. Make sure that all the tests continue to pass.
31+
6. Ensure the code is [WACK compliant](https://developer.microsoft.com/en-us/windows/develop/app-certification-kit). To do this, generate a Visual Studio solution, right click on project; Store -> Create App Packages. Follow the prompts and run WACK tests. Make sure they all succeed.
32+
7. Ensure you update the [README](README.md) with additional documentation as needed.
33+
8. Also update the [MixedRealityToolkit-Unity wiki](https://github.com/Microsoft/MixedRealityToolkit-Unity/wiki) if you think it will be useful for other developers.
34+
35+
# Rebase commits
36+
37+
The commits in your pull request should tell a story about how the code got from point A to point B.
38+
Good stories are edited, so you'll want to rebase your commits so that they tell a good story.
39+
40+
Each commit should build and pass all of the tests.
41+
If you want to add new tests for functionality that's not yet written, ensure the tests are added disabled.
42+
43+
Don't forget to run git diff --check to catch those annoying whitespace changes.
44+
45+
Please follow the established [Git convention for commit messages](https://www.git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project#Commit-Guidelines).
46+
The first line is a summary in the imperative, about 50 characters or less, and should not end with a period.
47+
An optional, longer description must be preceded by an empty line and should be wrapped at around 72 characters.
48+
This helps with various outputs from Git or other tools.
49+
50+
You can update message of local commits you haven't pushed yet using git commit --amend or git rebase --interactivewith reword command.
51+
52+
# Pull request
53+
54+
Start a GitHub pull request to merge your topic branch into the [main repository's Dev_Working_Branch](https://github.com/Microsoft/MixedRealityToolkit-Unity/tree/Dev_Working_Branch).
55+
(If you are a Microsoft employee and are not a member of the [Microsoft organization on GitHub](https://github.com/Microsoft) yet, please link your Microsoft and GitHub accounts on corpnet by visiting [Open Source at Microsoft](https://opensource.microsoft.com/) before you start your pull request. There's some process stuff you'll need to do ahead of time.)
56+
If you haven't contributed to a Microsoft project before, you may be asked to sign a [contribution license agreement](https://cla.microsoft.com/).
57+
A comment in the PR will let you know if you do.
58+
59+
The project maintainers will review your changes. We aim to review all changes within three business days.
60+
Address any review comments, force push to your topic branch, and post a comment letting us know that there's new stuff to review.
61+
62+
# Merge
63+
64+
If the pull request review goes well, a project maintainer will merge your changes. Thank you for helping improve MixedRealityToolkit!

External/HowTo/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# How to ...
2+
This readme is intended to document any questions developers might have around how to achieve certain things using the MixedRealityToolkit-vNext.
3+
4+
## How to migrate from the old MixedRealityToolkit to the vNext?
5+
For now, this should be treated like a completely different project and highly experimental while it's being constructed.
6+
For the final version, there will be a migration back for basic and advanced users alike.
7+
62.7 KB
Loading
74.1 KB
Loading
Loading
1.27 MB
Loading
77 KB
Loading
1.91 KB
Loading
6.46 KB
Loading
2.95 KB
Loading
1.79 KB
Loading
61.3 KB
Loading

External/ReadMeImages/OpenXR-HLA.jpg

79.4 KB
Loading
1.74 KB
Loading
1.79 KB
Loading

External/ReadMeImages/icon_design.png

1.43 KB
Loading
1.55 KB
Loading

License.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Microsoft Corporation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

MRTK-SDK.md

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Mixed Reality Toolkit – User SDK approach *(High level)*
2+
3+
## Problem Statement
4+
5+
Current examples / implementations are far too involved and require users to build new scripts / behaviours to build their project. Users complain the project is too hard to pick up and the current examples are not conducive to implementation (only demonstration)
6+
7+
## Objective
8+
9+
To rearchitect the generic consumption of the Mixed Reality Toolkit to enable users to build scenes through easy to use “drag and drop” components.
10+
11+
12+
An example workflow should resemble:
13+
14+
* Consumer builds a 3D scene
15+
* MRTK is added to the project
16+
* Add a simple way to define walkable areas (Either through locomotion, free teleportation or restricted teleportation)
17+
* Enable selecting of an object in a scene and configuring it for interaction (pickup, push, throw, etc)
18+
* Enable animation interactions, e.g. opening doors
19+
* Enable passive interactions, interacting one object with another that is in control by the player
20+
* Quickly add Speech / Gesture / Focus / Controller services
21+
22+
(purely a working set, needs refining)
23+
24+
The ultimate goal is to deliver new users (and existing) with a rapid way to build projects / scenes, trying to cover the 80/20 rule.
25+
The simple promise for users building with these controls, is that they should always work, regardless of our plans under the hood for MRTK and preserve the projects they build. 
26+
27+
## High Level required components
28+
29+
In transforming the frontend of the MRTK for consumers to construct their projects / scenes with, we need to define and develop a simple set of prefabs / scripts / Editor options to quickly and easily add MRTK activities / behaviors to a 3D scene (or virtual scene in the case of HoloLens)
30+
These can be categorized as:
31+
32+
### Scene elements
33+
34+
Scene elements relate to management style components / configuration to activate core components for the MRTK. Current elements would include:
35+
36+
* Camera (current MRCP)
37+
* Managers (focus / gaze / controllers / motion controllers / etc)
38+
* Controllers (scene object collections, interactions)
39+
40+
### Interaction controls
41+
42+
Controls form how the user moves and interacts in the scene, ranging from:
43+
44+
* Locomotion / Teleportation control
45+
* Locomotion / Teleportation boundaries / targets
46+
* Speech commands
47+
* Gestures
48+
* Pointers / Hands
49+
50+
### Reaction Controls
51+
52+
These components relate to things the user will interact with in a scene, enabling the player to affect the scene, ranging from:
53+
54+
* Grabbing
55+
* Pushing
56+
* Opening
57+
* Pointer targets
58+
* Buttons / UX
59+
* Hot Zones (reaction-based events from either the player or an interaction control collision)
60+
* Highlighting
61+
62+
### UX Systems
63+
64+
In any project the user will need a friendly UX system to assist in their scenes, for example:
65+
66+
* Menu Systems (Grid / Radial)
67+
* Layout components (Grid / Radial / Curved / Layered)
68+
* Controller systems (menu overlays for hands / controllers)
69+
* Tooltips
70+
* Fade Assist
71+
72+
> **This is not an extensive list and subject to debate.**
73+
74+
## Initial Plans
75+
76+
The proposal is to build a small subset of controls that utilize the current functionality of the MRTK, applying the above objectives and principles to define some of the high-Level components.
77+
78+
An initial scene which should support both HL & Immersive (subject to discussion, separate may be easier for now), should walk a user in a common room style scenario.
79+
80+
The example (lending from the Cliffhouse setup) should display a simple room, with hot spot teleport zones and activities that can be performed at each location, something akin to Rick and Morty VR or Job Simulator:
81+
82+
![](External/ReadMeImages/MRTK-SDK-Example1.jpg)![](External/ReadMeImages/MRTK-SDK-Example2.jpg)
83+
<div style="text-align:center"> Figure 1 : Reference examples (Rick and Morty / Job Simulator) </div>
84+
85+
The example should include a walk-through example for building the scene in Unity that any consumer can follow, starting from the empty room populated with some simple elements, e.g.
86+
87+
* Buttons that show text on a wall – showing button interaction
88+
* Mugs that you can pick up (stretch and empty liquid :P) – showing grabbing / dropping
89+
* A puzzle where you slide tiles around a maze – showing pushing constrained objects around
90+
91+
More examples can be added to the same room, building from a simple start.
92+
We ensure we build the components to meet these objectives and refine as necessary. The example scene and starter components should then be added to the existing MRTK solution for testing / consumption whilst more are built.
93+
94+
## Work in progress
95+
96+
The team have been working on the initial SDK setup scene with the first components, aims to have (as a start):
97+
98+
* A starting workroom with defined workplaces
99+
* An area to pick up and interact with objects
100+
* An area to push objects around, possibly pick up
101+
* An area with buttons and UX interactive elements
102+
* A UX panel display area
103+
104+
105+
### Current working scene
106+
107+
![](External/ReadMeImages/MRTK-SDK-WIP1.png)
108+
<div style="text-align:center"> Figure 2 : Work in progress example scene 1 </div>
109+
110+
Elements being built in to the scene:
111+
112+
1. Alcove for object to pick up, thinking a cube, cylinder, cup, picture frame
113+
2. A contained bin where balls will be dropped from *5 when buttons are pressed. Balls can be pushed around and possibly picked up and thrown
114+
3. Button table for push interaction UX items
115+
4. Display frame and information box area. Should also have some switchable indicators
116+
5. Drop points for adding new spheres
117+
118+
For HoloLens, the room would not be displayed, and objects should interact with the environment, e.g.
119+
120+
* Window or shelf for the Alcove (1)
121+
* Table for buttons (3) with Display elements in 4 floating
122+
* Elements dropped from (5) will just drop and interact with the Spatial Mesh
123+
124+
# Reference Example
125+
126+
VRTK are refactoring / rebuilding their new example scenes for their next release, which show an interesting path for example scenes:
127+
128+
![](External/ReadMeImages/MRTK-SDK-VRTKReference1.png)
129+
<div style="text-align:center"> Figure 3 : Reference, VRTK new samples </div>
130+
131+
These do look cleaner and easier to digest, this doesn’t change how VRTK is currently implemented which is part of the work detailed here.
132+
But it is a great showcase for the quality level we should be aiming for which has started with Yoon’s updates to the examples.

0 commit comments

Comments
 (0)