├── .editorconfig ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── DEVELOPER.md ├── LICENSE ├── README.md ├── samples ├── group-mask │ ├── .dockerignore │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── altspace-cube.glb │ │ ├── altspace-logo.jpg │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── app.ts │ │ ├── groupMaskManager.ts │ │ └── server.ts │ └── tsconfig.json ├── hello-world │ ├── .dockerignore │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── azure-pipelines.yml │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── altspace-cube.glb │ │ ├── altspace-logo.jpg │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── app.ts │ │ └── server.ts │ └── tsconfig.json ├── solar-system │ ├── .dockerignore │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── azure-pipelines.yml │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── assets │ │ │ ├── earth.gltf │ │ │ ├── earth.jpg │ │ │ ├── jupiter.gltf │ │ │ ├── jupiter.jpg │ │ │ ├── mars.gltf │ │ │ ├── mars.jpg │ │ │ ├── mercury.gltf │ │ │ ├── mercury.jpg │ │ │ ├── moon.gltf │ │ │ ├── moon.jpg │ │ │ ├── neptune.gltf │ │ │ ├── neptune.jpg │ │ │ ├── planet.bin │ │ │ ├── saturn ring.png │ │ │ ├── saturn.blend │ │ │ ├── saturn.gltf │ │ │ ├── saturn.jpg │ │ │ ├── sol.gltf │ │ │ ├── sol.jpg │ │ │ ├── uranus.gltf │ │ │ ├── uranus.jpg │ │ │ ├── venus.gltf │ │ │ └── venus.jpg │ │ ├── database.json │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── app.ts │ │ └── server.ts │ └── tsconfig.json ├── tic-tac-toe │ ├── .dockerignore │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── azure-pipelines.yml │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── altspace-cube.glb │ │ ├── altspace-logo.jpg │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── app.ts │ │ └── server.ts │ ├── tsconfig.json │ └── tutorial-steps │ │ ├── Step-1 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-10 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-11 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-12 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-13 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-14 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-15 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-16 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-17 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-18 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-2 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-3 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-4 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-5 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-6 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-7 │ │ ├── README.md │ │ └── app.ts │ │ ├── Step-8 │ │ ├── README.md │ │ └── app.ts │ │ └── Step-9 │ │ ├── README.md │ │ └── app.ts └── wear-a-hat │ ├── .dockerignore │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── azure-pipelines.yml │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── LavaHelmet.glb │ ├── hardhat.glb │ ├── hats.json │ ├── index.html │ ├── manifest.json │ ├── redhat.glb │ ├── strawhat.glb │ ├── tophat.glb │ └── wizardhat.glb │ ├── src │ ├── app.ts │ └── server.ts │ └── tsconfig.json └── scripts ├── .gitignore ├── build-all.js ├── change-sdk-source.js ├── foreach-sample.js ├── install-all.js ├── package-lock.json ├── package.json └── sdk-path-config-sample.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/README.md -------------------------------------------------------------------------------- /samples/group-mask/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/built -------------------------------------------------------------------------------- /samples/group-mask/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/.editorconfig -------------------------------------------------------------------------------- /samples/group-mask/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/.eslintrc.js -------------------------------------------------------------------------------- /samples/group-mask/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/.gitignore -------------------------------------------------------------------------------- /samples/group-mask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/Dockerfile -------------------------------------------------------------------------------- /samples/group-mask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/README.md -------------------------------------------------------------------------------- /samples/group-mask/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/package-lock.json -------------------------------------------------------------------------------- /samples/group-mask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/package.json -------------------------------------------------------------------------------- /samples/group-mask/public/altspace-cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/public/altspace-cube.glb -------------------------------------------------------------------------------- /samples/group-mask/public/altspace-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/public/altspace-logo.jpg -------------------------------------------------------------------------------- /samples/group-mask/public/index.html: -------------------------------------------------------------------------------- 1 |

Group mask sample

-------------------------------------------------------------------------------- /samples/group-mask/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/public/manifest.json -------------------------------------------------------------------------------- /samples/group-mask/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/src/app.ts -------------------------------------------------------------------------------- /samples/group-mask/src/groupMaskManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/src/groupMaskManager.ts -------------------------------------------------------------------------------- /samples/group-mask/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/src/server.ts -------------------------------------------------------------------------------- /samples/group-mask/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/group-mask/tsconfig.json -------------------------------------------------------------------------------- /samples/hello-world/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/built -------------------------------------------------------------------------------- /samples/hello-world/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/.editorconfig -------------------------------------------------------------------------------- /samples/hello-world/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/.eslintrc.js -------------------------------------------------------------------------------- /samples/hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/.gitignore -------------------------------------------------------------------------------- /samples/hello-world/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/Dockerfile -------------------------------------------------------------------------------- /samples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/README.md -------------------------------------------------------------------------------- /samples/hello-world/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/hello-world/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/package-lock.json -------------------------------------------------------------------------------- /samples/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/package.json -------------------------------------------------------------------------------- /samples/hello-world/public/altspace-cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/public/altspace-cube.glb -------------------------------------------------------------------------------- /samples/hello-world/public/altspace-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/public/altspace-logo.jpg -------------------------------------------------------------------------------- /samples/hello-world/public/index.html: -------------------------------------------------------------------------------- 1 |

MRE Hello World

-------------------------------------------------------------------------------- /samples/hello-world/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/public/manifest.json -------------------------------------------------------------------------------- /samples/hello-world/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/src/app.ts -------------------------------------------------------------------------------- /samples/hello-world/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/src/server.ts -------------------------------------------------------------------------------- /samples/hello-world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/hello-world/tsconfig.json -------------------------------------------------------------------------------- /samples/solar-system/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/built -------------------------------------------------------------------------------- /samples/solar-system/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/.editorconfig -------------------------------------------------------------------------------- /samples/solar-system/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/.eslintrc.js -------------------------------------------------------------------------------- /samples/solar-system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/.gitignore -------------------------------------------------------------------------------- /samples/solar-system/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/Dockerfile -------------------------------------------------------------------------------- /samples/solar-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/README.md -------------------------------------------------------------------------------- /samples/solar-system/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/solar-system/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/package-lock.json -------------------------------------------------------------------------------- /samples/solar-system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/package.json -------------------------------------------------------------------------------- /samples/solar-system/public/assets/earth.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/earth.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/earth.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/jupiter.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/jupiter.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/jupiter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/jupiter.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/mars.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/mars.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/mars.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/mercury.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/mercury.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/mercury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/mercury.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/moon.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/moon.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/moon.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/neptune.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/neptune.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/neptune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/neptune.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/planet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/planet.bin -------------------------------------------------------------------------------- /samples/solar-system/public/assets/saturn ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/saturn ring.png -------------------------------------------------------------------------------- /samples/solar-system/public/assets/saturn.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/saturn.blend -------------------------------------------------------------------------------- /samples/solar-system/public/assets/saturn.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/saturn.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/saturn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/saturn.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/sol.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/sol.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/sol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/sol.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/uranus.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/uranus.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/uranus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/uranus.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/assets/venus.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/venus.gltf -------------------------------------------------------------------------------- /samples/solar-system/public/assets/venus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/assets/venus.jpg -------------------------------------------------------------------------------- /samples/solar-system/public/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/database.json -------------------------------------------------------------------------------- /samples/solar-system/public/index.html: -------------------------------------------------------------------------------- 1 |

MRE Solar System

-------------------------------------------------------------------------------- /samples/solar-system/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/public/manifest.json -------------------------------------------------------------------------------- /samples/solar-system/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/src/app.ts -------------------------------------------------------------------------------- /samples/solar-system/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/src/server.ts -------------------------------------------------------------------------------- /samples/solar-system/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/solar-system/tsconfig.json -------------------------------------------------------------------------------- /samples/tic-tac-toe/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/built -------------------------------------------------------------------------------- /samples/tic-tac-toe/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/.editorconfig -------------------------------------------------------------------------------- /samples/tic-tac-toe/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/.eslintrc.js -------------------------------------------------------------------------------- /samples/tic-tac-toe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/.gitignore -------------------------------------------------------------------------------- /samples/tic-tac-toe/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/Dockerfile -------------------------------------------------------------------------------- /samples/tic-tac-toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/tic-tac-toe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/package-lock.json -------------------------------------------------------------------------------- /samples/tic-tac-toe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/package.json -------------------------------------------------------------------------------- /samples/tic-tac-toe/public/altspace-cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/public/altspace-cube.glb -------------------------------------------------------------------------------- /samples/tic-tac-toe/public/altspace-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/public/altspace-logo.jpg -------------------------------------------------------------------------------- /samples/tic-tac-toe/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/public/index.html -------------------------------------------------------------------------------- /samples/tic-tac-toe/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/public/manifest.json -------------------------------------------------------------------------------- /samples/tic-tac-toe/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/src/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/src/server.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tsconfig.json -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-1/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-1/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-10/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-10/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-10/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-11/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-11/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-11/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-12/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-12/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-12/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-13/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-13/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-13/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-14/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-14/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-14/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-15/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-15/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-15/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-16/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-16/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-16/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-17/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-17/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-17/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-18/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-18/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-18/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-2/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-2/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-2/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-3/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-3/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-3/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-4/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-4/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-4/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-5/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-5/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-5/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-6/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-6/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-6/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-7/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-7/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-7/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-8/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-8/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-8/app.ts -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-9/README.md -------------------------------------------------------------------------------- /samples/tic-tac-toe/tutorial-steps/Step-9/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/tic-tac-toe/tutorial-steps/Step-9/app.ts -------------------------------------------------------------------------------- /samples/wear-a-hat/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/built -------------------------------------------------------------------------------- /samples/wear-a-hat/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/.editorconfig -------------------------------------------------------------------------------- /samples/wear-a-hat/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/.eslintrc.js -------------------------------------------------------------------------------- /samples/wear-a-hat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/.gitignore -------------------------------------------------------------------------------- /samples/wear-a-hat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/Dockerfile -------------------------------------------------------------------------------- /samples/wear-a-hat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/README.md -------------------------------------------------------------------------------- /samples/wear-a-hat/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/wear-a-hat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/package-lock.json -------------------------------------------------------------------------------- /samples/wear-a-hat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/package.json -------------------------------------------------------------------------------- /samples/wear-a-hat/public/LavaHelmet.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/LavaHelmet.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/public/hardhat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/hardhat.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/public/hats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/hats.json -------------------------------------------------------------------------------- /samples/wear-a-hat/public/index.html: -------------------------------------------------------------------------------- 1 |

MRE Hats

-------------------------------------------------------------------------------- /samples/wear-a-hat/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/manifest.json -------------------------------------------------------------------------------- /samples/wear-a-hat/public/redhat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/redhat.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/public/strawhat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/strawhat.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/public/tophat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/tophat.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/public/wizardhat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/public/wizardhat.glb -------------------------------------------------------------------------------- /samples/wear-a-hat/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/src/app.ts -------------------------------------------------------------------------------- /samples/wear-a-hat/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/src/server.ts -------------------------------------------------------------------------------- /samples/wear-a-hat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/samples/wear-a-hat/tsconfig.json -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | sdk-path-config.json -------------------------------------------------------------------------------- /scripts/build-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/build-all.js -------------------------------------------------------------------------------- /scripts/change-sdk-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/change-sdk-source.js -------------------------------------------------------------------------------- /scripts/foreach-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/foreach-sample.js -------------------------------------------------------------------------------- /scripts/install-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/install-all.js -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/sdk-path-config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mixed-reality-extension-sdk-samples/HEAD/scripts/sdk-path-config-sample.json --------------------------------------------------------------------------------