├── .gitignore ├── CODE_OF_CONDUCT.md ├── Images ├── EditorTooling.png ├── Features.gif ├── Logo.png ├── Overview.jpg ├── SpatialMeshComp.png ├── UpmAddTarPackage.png └── VersionBumpInspector.png ├── LICENSE ├── MR-Remoting-Android-App.Unity ├── .gitignore ├── Assets │ ├── ExampleAssets.meta │ ├── ExampleAssets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── PlacedCubeMat.mat │ │ │ ├── PlacedCubeMat.mat.meta │ │ │ ├── PlaneMat.mat │ │ │ └── PlaneMat.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── cube.fbx │ │ │ └── cube.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── ARPlane.prefab │ │ │ ├── ARPlane.prefab.meta │ │ │ ├── CubeObject.prefab │ │ │ └── CubeObject.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── SampleScene.unity │ │ │ └── SampleScene.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── ARFeatheredPlaneMeshVisualizer.cs │ │ │ ├── ARFeatheredPlaneMeshVisualizer.cs.meta │ │ │ ├── AnchorCreator.cs │ │ │ └── AnchorCreator.cs.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── FeatheredPlaneShader.shader │ │ │ └── FeatheredPlaneShader.shader.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── PlanePatternDot.png │ │ │ └── PlanePatternDot.png.meta │ │ ├── Tutorial.meta │ │ └── Tutorial │ │ │ ├── ARTutorialStyle.asset │ │ │ ├── ARTutorialStyle.asset.meta │ │ │ ├── ARTutorialWelcomePage.asset │ │ │ ├── ARTutorialWelcomePage.asset.meta │ │ │ ├── Images.meta │ │ │ ├── Images │ │ │ ├── 1-welcome-screen-image.png │ │ │ ├── 1-welcome-screen-image.png.meta │ │ │ ├── project-header-ar.png │ │ │ └── project-header-ar.png.meta │ │ │ ├── TutorialProjectSettings.asset │ │ │ ├── TutorialProjectSettings.asset.meta │ │ │ ├── TutorialsContainer.asset │ │ │ └── TutorialsContainer.asset.meta │ ├── MR-Remoting-Android.meta │ ├── MR-Remoting-Android │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── SEGOEICONS SDF.asset │ │ │ ├── SEGOEICONS SDF.asset.meta │ │ │ ├── SEGOEICONS.TTF │ │ │ └── SEGOEICONS.TTF.meta │ │ ├── Joystick.meta │ │ ├── Joystick │ │ │ ├── Joystick.prefab │ │ │ ├── Joystick.prefab.meta │ │ │ ├── JoystickAndLabel.prefab │ │ │ ├── JoystickAndLabel.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Joystick.asmdef │ │ │ │ ├── Joystick.asmdef.meta │ │ │ │ ├── JoystickControl.cs │ │ │ │ ├── JoystickControl.cs.meta │ │ │ │ ├── JoystickMovedEvent.cs │ │ │ │ └── JoystickMovedEvent.cs.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Joystick.png │ │ │ │ ├── Joystick.png.meta │ │ │ │ ├── JoystickContainer.png │ │ │ │ └── JoystickContainer.png.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── YUVFeedMaterial.mat │ │ │ └── YUVFeedMaterial.mat.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── main.unity │ │ │ └── main.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── ARCameraCapture.meta │ │ │ ├── ARCameraCapture │ │ │ │ ├── ARCameraCapture.asmdef │ │ │ │ ├── ARCameraCapture.asmdef.meta │ │ │ │ ├── ARCameraCapture.cs │ │ │ │ ├── ARCameraCapture.cs.meta │ │ │ │ ├── BitmapEncoder.cs │ │ │ │ ├── BitmapEncoder.cs.meta │ │ │ │ ├── CameraCapture.cs │ │ │ │ ├── CameraCapture.cs.meta │ │ │ │ ├── CameraResolution.cs │ │ │ │ └── CameraResolution.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── BuildApk.cs │ │ │ │ └── BuildApk.cs.meta │ │ │ ├── FlyCamera.cs │ │ │ ├── FlyCamera.cs.meta │ │ │ ├── RecordingIcon.cs │ │ │ ├── RecordingIcon.cs.meta │ │ │ ├── RemotingScreen.cs │ │ │ ├── RemotingScreen.cs.meta │ │ │ ├── UIRemotingClient.cs │ │ │ ├── UIRemotingClient.cs.meta │ │ │ ├── WebRtcAddOns.meta │ │ │ └── WebRtcAddOns │ │ │ │ ├── CameraPoseSource.cs │ │ │ │ ├── CameraPoseSource.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── MessageSourceAndReceiver.cs │ │ │ │ ├── MessageSourceAndReceiver.cs.meta │ │ │ │ ├── PoseUtils.cs │ │ │ │ ├── PoseUtils.cs.meta │ │ │ │ ├── TextureSource.cs │ │ │ │ ├── TextureSource.cs.meta │ │ │ │ ├── VideoCanvasRenderer.cs │ │ │ │ ├── VideoCanvasRenderer.cs.meta │ │ │ │ ├── WebRtcAddOns.asmdef │ │ │ │ └── WebRtcAddOns.asmdef.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── YUVFeedShaderGreenScreenUnlit.shader │ │ │ └── YUVFeedShaderGreenScreenUnlit.shader.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── BackgroundImage.png │ │ │ ├── BackgroundImage.png.meta │ │ │ ├── Circle.png │ │ │ ├── Circle.png.meta │ │ │ ├── QRCode.png │ │ │ └── QRCode.png.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Lumin.meta │ │ └── Lumin │ │ │ ├── MagicLeapManifestSettings.asset │ │ │ └── MagicLeapManifestSettings.asset.meta │ ├── StreamingAssets.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── XR.meta │ └── XR │ │ ├── Loaders.meta │ │ ├── Loaders │ │ ├── AR Core Loader.asset │ │ ├── AR Core Loader.asset.meta │ │ ├── AR Kit Loader.asset │ │ ├── AR Kit Loader.asset.meta │ │ ├── Windows MR Loader.asset │ │ └── Windows MR Loader.asset.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ ├── AR Core Loader Settings.asset │ │ ├── AR Core Loader Settings.asset.meta │ │ ├── AR Core Settings.asset │ │ ├── AR Core Settings.asset.meta │ │ ├── AR Kit Loader Settings.asset │ │ ├── AR Kit Loader Settings.asset.meta │ │ ├── AR Kit Settings.asset │ │ ├── AR Kit Settings.asset.meta │ │ ├── Magic Leap Settings.asset │ │ ├── Magic Leap Settings.asset.meta │ │ ├── Windows MR Package Settings.asset │ │ └── Windows MR Package Settings.asset.meta │ │ ├── XRGeneralSettings.asset │ │ └── XRGeneralSettings.asset.meta ├── InitCodeMarker ├── Packages │ ├── MixedReality │ │ └── com.microsoft.mixedreality.webrtc-2.0.2.tgz │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.learn.iet-framework │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRPackageSettings.asset │ └── XRSettings.asset ├── MR-Remoting-Host.Unity ├── .gitignore ├── Assets │ ├── MRTK.meta │ ├── MRTK │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── ChannelPacker.shader │ │ │ ├── ChannelPacker.shader.meta │ │ │ ├── DepthBufferPostProcess.shader │ │ │ ├── DepthBufferPostProcess.shader.meta │ │ │ ├── InstancedColored.shader │ │ │ ├── InstancedColored.shader.meta │ │ │ ├── InvisibleShader.shader │ │ │ ├── InvisibleShader.shader.meta │ │ │ ├── MRTK.Shaders.sentinel │ │ │ ├── MRTK.Shaders.sentinel.meta │ │ │ ├── MRTK_Wireframe.shader │ │ │ ├── MRTK_Wireframe.shader.meta │ │ │ ├── MixedRealityShaderUtils.cginc │ │ │ ├── MixedRealityShaderUtils.cginc.meta │ │ │ ├── MixedRealityStandard.shader │ │ │ ├── MixedRealityStandard.shader.meta │ │ │ ├── MixedRealityTextMeshPro.shader │ │ │ ├── MixedRealityTextMeshPro.shader.meta │ │ │ ├── Text3DShader.shader │ │ │ └── Text3DShader.shader.meta │ ├── MixedRealityToolkit.Generated.meta │ ├── MixedRealityToolkit.Generated │ │ ├── CustomProfiles.meta │ │ ├── CustomProfiles │ │ │ ├── New MixedRealitySpatialAwarenessSystemProfile.asset │ │ │ ├── New MixedRealitySpatialAwarenessSystemProfile.asset.meta │ │ │ ├── New MixedRealityToolkitConfigurationProfile.asset │ │ │ └── New MixedRealityToolkitConfigurationProfile.asset.meta │ │ ├── MRTK.Generated.sentinel │ │ ├── MRTK.Generated.sentinel.meta │ │ ├── ProjectPreferences.asset │ │ ├── ProjectPreferences.asset.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── PackageTemplate.meta │ ├── PackagesLocal.meta │ ├── PackagesLocal │ │ ├── Microsoft.MixedReality.QR.0.5.3013.meta │ │ └── Microsoft.MixedReality.QR.0.5.3013 │ │ │ ├── .signature.p7s │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── MSBuildForUnity.meta │ │ │ ├── MSBuildForUnity │ │ │ ├── MetaOverrides.meta │ │ │ └── MetaOverrides │ │ │ │ └── InEditor.meta │ │ │ ├── Microsoft.MixedReality.QR.0.5.3013.nupkg │ │ │ ├── Microsoft.MixedReality.QR.0.5.3013.nupkg.meta │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Microsoft.MixedReality.QR.Editor.asmdef │ │ │ │ ├── Microsoft.MixedReality.QR.Editor.asmdef.meta │ │ │ │ ├── Microsoft.MixedReality.QR.Init.cs │ │ │ │ └── Microsoft.MixedReality.QR.Init.cs.meta │ │ │ ├── arm.meta │ │ │ ├── arm │ │ │ │ ├── Microsoft.MixedReality.QR.dll │ │ │ │ └── Microsoft.MixedReality.QR.dll.meta │ │ │ ├── arm64.meta │ │ │ ├── arm64 │ │ │ │ ├── Microsoft.MixedReality.QR.dll │ │ │ │ └── Microsoft.MixedReality.QR.dll.meta │ │ │ ├── x64.meta │ │ │ ├── x64 │ │ │ │ ├── Microsoft.MixedReality.QR.dll │ │ │ │ ├── Microsoft.MixedReality.QR.dll.meta │ │ │ │ ├── MonoSupport.dll │ │ │ │ └── MonoSupport.dll.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ │ ├── Microsoft.MixedReality.QR.dll │ │ │ │ └── Microsoft.MixedReality.QR.dll.meta │ │ │ ├── lib.meta │ │ │ └── lib │ │ │ ├── unity.meta │ │ │ └── unity │ │ │ ├── net46.meta │ │ │ ├── net46 │ │ │ ├── Microsoft.MixedReality.QR.DotNet.dll │ │ │ └── Microsoft.MixedReality.QR.DotNet.dll.meta │ │ │ ├── netstandard2.0.meta │ │ │ └── netstandard2.0 │ │ │ ├── Microsoft.MixedReality.QR.DotNet.dll │ │ │ └── Microsoft.MixedReality.QR.DotNet.dll.meta │ ├── Samples.meta │ ├── Samples │ │ ├── Mixed Reality Toolkit Examples.meta │ │ └── Mixed Reality Toolkit Examples │ │ │ ├── 2.8.2.meta │ │ │ └── 2.8.2 │ │ │ ├── Demos - UX.meta │ │ │ └── Demos - UX │ │ │ ├── BoundingBox.meta │ │ │ ├── BoundingBox │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── BoundingBoxExamples.unity │ │ │ │ ├── BoundingBoxExamples.unity.meta │ │ │ │ ├── BoundingBoxRuntimeExample.unity │ │ │ │ └── BoundingBoxRuntimeExample.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── BoundingBoxExampleTest.cs │ │ │ │ └── BoundingBoxExampleTest.cs.meta │ │ │ ├── BoundsControl.meta │ │ │ ├── BoundsControl │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── BoundsControlConfigs.meta │ │ │ │ ├── BoundsControlConfigs │ │ │ │ │ ├── CoffeeCupTranslateHandlesConfiguration.asset │ │ │ │ │ └── CoffeeCupTranslateHandlesConfiguration.asset.meta │ │ │ │ ├── BoundsControlExamples.unity │ │ │ │ ├── BoundsControlExamples.unity.meta │ │ │ │ ├── BoundsControlRuntimeExample.unity │ │ │ │ └── BoundsControlRuntimeExample.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── BoundsControlRuntimeExample.cs │ │ │ │ └── BoundsControlRuntimeExample.cs.meta │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ObjectCollectionExamples.unity │ │ │ │ └── ObjectCollectionExamples.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── GridObjectLayoutControl.cs │ │ │ │ └── GridObjectLayoutControl.cs.meta │ │ │ ├── Dialog.meta │ │ │ ├── Dialog │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── DialogExample.unity │ │ │ │ └── DialogExample.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── DialogExampleController.cs │ │ │ │ └── DialogExampleController.cs.meta │ │ │ ├── Dwell.meta │ │ │ ├── Dwell │ │ │ ├── BaseDwellSample.cs │ │ │ ├── BaseDwellSample.cs.meta │ │ │ ├── DwellExample.unity │ │ │ ├── DwellExample.unity.meta │ │ │ ├── InstantDwellSample.cs │ │ │ ├── InstantDwellSample.cs.meta │ │ │ ├── ListItemDwell.cs │ │ │ ├── ListItemDwell.cs.meta │ │ │ ├── ToggleDwellSample.cs │ │ │ └── ToggleDwellSample.cs.meta │ │ │ ├── Interactables.meta │ │ │ ├── Interactables │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── MRTK.Demos.UX.Interactables.asmdef │ │ │ ├── MRTK.Demos.UX.Interactables.asmdef.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── PhysicalTouchIcon.mat │ │ │ │ ├── PhysicalTouchIcon.mat.meta │ │ │ │ ├── TextureInteractable.mat │ │ │ │ └── TextureInteractable.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Model_Bucky.prefab │ │ │ │ ├── Model_Bucky.prefab.meta │ │ │ │ ├── Model_PushButton.prefab │ │ │ │ ├── Model_PushButton.prefab.meta │ │ │ │ ├── balloon.prefab │ │ │ │ └── balloon.prefab.meta │ │ │ ├── Profiles.meta │ │ │ ├── Profiles │ │ │ │ ├── Interactable_MixedRealityInputSystemProfile.asset │ │ │ │ ├── Interactable_MixedRealityInputSystemProfile.asset.meta │ │ │ │ ├── Interactable_MixedRealitySpeechCommandsProfile.asset │ │ │ │ ├── Interactable_MixedRealitySpeechCommandsProfile.asset.meta │ │ │ │ ├── Interactable_MixedRealityToolkitConfigurationProfile.asset │ │ │ │ └── Interactable_MixedRealityToolkitConfigurationProfile.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── InteractablesExamples.unity │ │ │ │ └── InteractablesExamples.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── CustomInteractablesReceiver.cs │ │ │ │ └── CustomInteractablesReceiver.cs.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── PhysicalTouch.png │ │ │ │ └── PhysicalTouch.png.meta │ │ │ ├── Lines.meta │ │ │ ├── Lines │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── OpaqueLinesMaterial.mat │ │ │ │ ├── OpaqueLinesMaterial.mat.meta │ │ │ │ ├── TransparentLinesMaterial.mat │ │ │ │ └── TransparentLinesMaterial.mat.meta │ │ │ ├── Scenes.meta │ │ │ └── Scenes │ │ │ │ ├── LineExamples.unity │ │ │ │ └── LineExamples.unity.meta │ │ │ ├── ManipulationHandler.meta │ │ │ ├── ManipulationHandler │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ManipulationHandlerExample.unity │ │ │ │ └── ManipulationHandlerExample.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ChangeManipulation.cs │ │ │ │ └── ChangeManipulation.cs.meta │ │ │ ├── ObjectManipulator.meta │ │ │ ├── ObjectManipulator │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ObjectManipulatorExample.unity │ │ │ │ ├── ObjectManipulatorExample.unity.meta │ │ │ │ ├── ObjectManipulatorExamplePhysics.unity │ │ │ │ └── ObjectManipulatorExamplePhysics.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ReturnToBounds.cs │ │ │ │ └── ReturnToBounds.cs.meta │ │ │ ├── PressableButton.meta │ │ │ ├── PressableButton │ │ │ ├── Scenes.meta │ │ │ └── Scenes │ │ │ │ ├── PressableButtonExample.unity │ │ │ │ └── PressableButtonExample.unity.meta │ │ │ ├── ProgressIndicator.meta │ │ │ ├── ProgressIndicator │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── PIDemoAnimationPlay.anim │ │ │ │ ├── PIDemoAnimationPlay.anim.meta │ │ │ │ ├── PIDemoAnimationWait.anim │ │ │ │ ├── PIDemoAnimationWait.anim.meta │ │ │ │ ├── ProgressIndicatorDemoAnimation.controller │ │ │ │ └── ProgressIndicatorDemoAnimation.controller.meta │ │ │ ├── Profiles.meta │ │ │ ├── Profiles │ │ │ │ ├── ProgressIndicatorDemoConfigurationProfile.asset │ │ │ │ └── ProgressIndicatorDemoConfigurationProfile.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ProgressIndicatorExamples.unity │ │ │ │ ├── ProgressIndicatorExamples.unity.meta │ │ │ │ ├── ProgressIndicatorExamplesAdditiveLoad.unity │ │ │ │ ├── ProgressIndicatorExamplesAdditiveLoad.unity.meta │ │ │ │ ├── ProgressIndicatorExamplesSettings.lighting │ │ │ │ └── ProgressIndicatorExamplesSettings.lighting.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── IProgressIndicatorDemoObject.cs │ │ │ │ ├── IProgressIndicatorDemoObject.cs.meta │ │ │ │ ├── ProgressIndicatorDemo.cs │ │ │ │ ├── ProgressIndicatorDemo.cs.meta │ │ │ │ ├── ProgressIndicatorDemoAnimation.cs │ │ │ │ ├── ProgressIndicatorDemoAnimation.cs.meta │ │ │ │ ├── ProgressIndicatorDemoAsyncMethod.cs │ │ │ │ ├── ProgressIndicatorDemoAsyncMethod.cs.meta │ │ │ │ ├── ProgressIndicatorDemoSceneLoad.cs │ │ │ │ └── ProgressIndicatorDemoSceneLoad.cs.meta │ │ │ ├── Slate.meta │ │ │ ├── Slate │ │ │ ├── SlateExample.unity │ │ │ └── SlateExample.unity.meta │ │ │ ├── Slider.meta │ │ │ ├── Slider │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── SliderExample.unity │ │ │ │ └── SliderExample.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── SliderLunarLander.cs │ │ │ │ └── SliderLunarLander.cs.meta │ │ │ ├── Text.meta │ │ │ ├── Text │ │ │ ├── Scenes.meta │ │ │ └── Scenes │ │ │ │ ├── TextPrefabExamples.unity │ │ │ │ └── TextPrefabExamples.unity.meta │ │ │ ├── Tooltips.meta │ │ │ └── Tooltips │ │ │ ├── Scenes.meta │ │ │ └── Scenes │ │ │ ├── TooltipExamples.unity │ │ │ └── TooltipExamples.unity.meta │ ├── ScriptTemplates.meta │ ├── ScriptTemplates │ │ ├── 81-C# Script-NewBehaviourScript.cs.txt │ │ ├── 81-C# Script-NewBehaviourScript.cs.txt.meta │ │ ├── 84-Shader__Unlit Shader-NewUnlitShader.shader.txt │ │ └── 84-Shader__Unlit Shader-NewUnlitShader.shader.txt.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── UPMTools.cs │ │ │ └── UPMTools.cs.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── XR.meta │ └── XR │ │ ├── Loaders.meta │ │ ├── Loaders │ │ ├── Open XR Loader No Pre Init.asset │ │ ├── Open XR Loader No Pre Init.asset.meta │ │ ├── Open XR Loader.asset │ │ └── Open XR Loader.asset.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ ├── OpenXR Editor Settings.asset │ │ ├── OpenXR Editor Settings.asset.meta │ │ ├── OpenXR Package Settings.asset │ │ └── OpenXR Package Settings.asset.meta │ │ ├── XRGeneralSettings.asset │ │ └── XRGeneralSettings.asset.meta ├── Packages │ ├── MixedReality │ │ ├── com.microsoft.mixedreality.openxr-1.4.0.tgz │ │ ├── com.microsoft.mixedreality.toolkit.examples-2.8.2.tgz │ │ ├── com.microsoft.mixedreality.toolkit.extensions-2.8.2.tgz │ │ ├── com.microsoft.mixedreality.toolkit.foundation-2.8.2.tgz │ │ ├── com.microsoft.mixedreality.toolkit.standardassets-2.8.2.tgz │ │ └── com.microsoft.mixedreality.webrtc-2.0.2.tgz │ ├── com.microsoft.mixedrealitystudios.xr-mobile-remoting │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── SceneCameraFeed.mat │ │ │ │ ├── SceneCameraFeed.mat.meta │ │ │ │ ├── YUVFeed.mat │ │ │ │ └── YUVFeed.mat.meta │ │ │ ├── MobileRemotingHost.prefab │ │ │ ├── MobileRemotingHost.prefab.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── QRCodeSpatialGraphNode.prefab │ │ │ │ └── QRCodeSpatialGraphNode.prefab.meta │ │ │ ├── RenderTextures.meta │ │ │ ├── RenderTextures │ │ │ │ ├── StreamCamera.renderTexture │ │ │ │ └── StreamCamera.renderTexture.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── MobileHolographicRemotingHost Example.unity │ │ │ │ └── MobileHolographicRemotingHost Example.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── CameraDebug.cs │ │ │ │ ├── CameraDebug.cs.meta │ │ │ │ ├── CameraPoseReceiver.cs │ │ │ │ ├── CameraPoseReceiver.cs.meta │ │ │ │ ├── CameraResolution.cs │ │ │ │ ├── CameraResolution.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── GameViewRecorder.cs │ │ │ │ │ ├── GameViewRecorder.cs.meta │ │ │ │ │ ├── MRMobileRemotingEditor.cs │ │ │ │ │ └── MRMobileRemotingEditor.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── MessageSourceAndReceiver.cs │ │ │ │ ├── MessageSourceAndReceiver.cs.meta │ │ │ │ ├── MobileCamera.cs │ │ │ │ ├── MobileCamera.cs.meta │ │ │ │ ├── PoseUtils.cs │ │ │ │ ├── PoseUtils.cs.meta │ │ │ │ ├── QRCodeTracker.meta │ │ │ │ ├── QRCodeTracker │ │ │ │ │ ├── QRCodeTracker.asmdef │ │ │ │ │ ├── QRCodeTracker.asmdef.meta │ │ │ │ │ ├── QrAlignment.cs │ │ │ │ │ ├── QrAlignment.cs.meta │ │ │ │ │ ├── QrCodeTracker.cs │ │ │ │ │ ├── QrCodeTracker.cs.meta │ │ │ │ │ ├── QrRecognisedEvent.cs │ │ │ │ │ ├── QrRecognisedEvent.cs.meta │ │ │ │ │ ├── SpatialGraphNodeTracker.cs │ │ │ │ │ └── SpatialGraphNodeTracker.cs.meta │ │ │ │ ├── TextureReceiver.cs │ │ │ │ └── TextureReceiver.cs.meta │ │ │ ├── microsoft.mixedreality.xr-mobile-remoting.asmdef │ │ │ └── microsoft.mixedreality.xr-mobile-remoting.asmdef.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ ├── manifest.json.backup │ ├── manifest.json.backup0 │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRPackageSettings.asset │ └── XRSettings.asset └── package-lock.json ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── build.ps1 └── node-dss ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── dss.js ├── index.js ├── package-lock.json ├── package.json └── test └── basic.js /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | -------------------------------------------------------------------------------- /Images/EditorTooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/EditorTooling.png -------------------------------------------------------------------------------- /Images/Features.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/Features.gif -------------------------------------------------------------------------------- /Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/Logo.png -------------------------------------------------------------------------------- /Images/Overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/Overview.jpg -------------------------------------------------------------------------------- /Images/SpatialMeshComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/SpatialMeshComp.png -------------------------------------------------------------------------------- /Images/UpmAddTarPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/UpmAddTarPackage.png -------------------------------------------------------------------------------- /Images/VersionBumpInspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/Images/VersionBumpInspector.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 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 all 13 | 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 THE 21 | SOFTWARE 22 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5040ff35809714c9f899bd2e7ae0f30a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a1aa25d695ea4175bf4920feb2742e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Materials/PlacedCubeMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ce7ca15cd93341beb67396a494cef55 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Materials/PlaneMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2da0ea038f25a4fa998f183878aedf79 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 262e742d15f1b4d1487c6709552f51e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Models/cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Models/cube.fbx -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 652960599d8c4485a9ae38409999891a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Prefabs/ARPlane.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3738bd65ede154463b2c35064b9e5fdb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Prefabs/CubeObject.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe573e7abb8af466791f07600c0785e3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7f5acf46ddb42618485f6adf8af0c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7dc6893b21fb45f1b98fce4a2e373f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Scripts/ARFeatheredPlaneMeshVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de9919161fbca46b79a86ecacee38c30 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Scripts/AnchorCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788587e994f1943f3856c1c332db429b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 504c5a8d7f1ea4880b02ef40c6f96bd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Shaders/FeatheredPlaneShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b989c81462e144eb95a232bec4719d5 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aab7ef822b354523935cb8a8fdb23fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Textures/PlanePatternDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Textures/PlanePatternDot.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa5f7db8f388e40c98ecc12b9298dda2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/ARTutorialStyle.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a385a00f03d2f4d1aa06e69dc6fdeea4, type: 3} 13 | m_Name: ARTutorialStyle 14 | m_EditorClassIdentifier: 15 | m_MaskingColor: {r: 0, g: 0.15686275, b: 0.20784314, a: 0.8} 16 | m_HighlightColor: {r: 0, g: 0.7764706, b: 0.8745098, a: 1} 17 | m_BlockedInteractionColor: {r: 1, g: 1, b: 1, a: 0.5} 18 | m_HighlightThickness: 3 19 | m_HighlightAnimationSpeed: 1.5 20 | m_HighlightAnimationDelay: 5 21 | m_OrderedListDelimiter: . 22 | m_UnorderedListBullet: "\u2022" 23 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/ARTutorialStyle.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 673c100feae4c40308b05cbe438649eb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/ARTutorialWelcomePage.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ed8cdd171b54fe39c58afde8ff5d51 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4169c8a7a0818423aa84fe774678e570 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/Images/1-welcome-screen-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/Images/1-welcome-screen-image.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/Images/project-header-ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/Images/project-header-ar.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/TutorialProjectSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81fee52a5ef9d49a9babe154239f82cf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/ExampleAssets/Tutorial/TutorialsContainer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58201dbec29094f7a9c5cf1b87912e6b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753ebf806434801489d867344c069e96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf4a19494c40a2244b0e25b9e5379e0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Fonts/SEGOEICONS SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 076d29ffa128aa54194a85897740ff8e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Fonts/SEGOEICONS.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Fonts/SEGOEICONS.TTF -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Fonts/SEGOEICONS.TTF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a446777a1e651240a6d922054b61d10 3 | TrueTypeFontImporter: 4 | externalObjects: {} 5 | serializedVersion: 4 6 | fontSize: 16 7 | forceTextureCase: -2 8 | characterSpacing: 0 9 | characterPadding: 1 10 | includeFontData: 1 11 | fontNames: 12 | - Segoe Fluent Icons 13 | fallbackFontReferences: [] 14 | customCharacters: 15 | fontRenderingMode: 0 16 | ascentCalculationMode: 1 17 | useLegacyBoundsCalculation: 0 18 | shouldRoundAdvanceValue: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc8f1ca5c78d41428fc75306ed2300c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Joystick.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 208f04793e5f6714dbc3002363cc4486 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/JoystickAndLabel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca94106fd555e84f91fec6bff9c8ee4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cbb71d211b1ac4428a31df48695a546 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts/Joystick.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jostick" 3 | } 4 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts/Joystick.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9836ff04eb9ae141acb837e83a62cc9 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts/JoystickControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95ad0b0bd1e63cb469826ed1338551f0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts/JoystickMovedEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.Events; 4 | 5 | [Serializable] 6 | public class JoystickMovedEvent : UnityEvent { } 7 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Scripts/JoystickMovedEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd63aabf29564bc41871544c46a11185 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d3fa2b0a8b6af344915ece238053bc9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Textures/Joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Textures/Joystick.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Textures/JoystickContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Joystick/Textures/JoystickContainer.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 098052756bfb89d4a8dfdd5ad7dee4aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Materials/YUVFeedMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2be6f6fa463729044ab7c1982a60baf2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fea2b03111fd44c01a102c644b335bab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scenes/main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bdce89659816455b9f906fc62d19910 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57ea83405590e0549ab77ec4dca14c14 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43139e19d95200a4fb9f41b8ef33d57d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/ARCameraCapture.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ARCameraCapture", 3 | "rootNamespace": "", 4 | "references": [ 5 | "GUID:9e6bdf94fcb245c585c26819fa23a202", 6 | "GUID:a9420e37d7990b54abdef6688edbe313", 7 | "GUID:92703082f92b41ba80f0d6912de66115" 8 | ], 9 | "includePlatforms": [], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": true, 12 | "overrideReferences": false, 13 | "precompiledReferences": [], 14 | "autoReferenced": true, 15 | "defineConstraints": [], 16 | "versionDefines": [], 17 | "noEngineReferences": false 18 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/ARCameraCapture.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d34cc104dda8c246b25b1074ea9a623 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/ARCameraCapture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 165cb370328ea1c43b14b74b233b1759 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/BitmapEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee85ab718e61c547808accb43179931 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/CameraCapture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af8b30ee8877a104697c4969479a9f6a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/ARCameraCapture/CameraResolution.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0cf3934e5cf7fd4d8960e75332c840d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd720a4d08d464b4e9dbf56700dffb47 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/Editor/BuildApk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4422b076b68017b4083aad9e4a901218 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/FlyCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fa713317deb6d246917e728161599c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/RecordingIcon.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | namespace MobileHolographicRemoting 7 | { 8 | /// 9 | /// Periodic flashing of the recording icon 10 | /// 11 | public class RecordingIcon : MonoBehaviour 12 | { 13 | [SerializeField] private Image iconImage; 14 | [SerializeField, Range(1f, 10f)] private float speed = 3f; 15 | 16 | private void Update() 17 | { 18 | float t = Mathf.Cos(Time.time * speed); 19 | bool on = t > 0; 20 | iconImage.enabled = on; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/RecordingIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeff96e119f7b96478646d60a5fceef9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/RemotingScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17261fc01de51214690888e81abf730a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/UIRemotingClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf9323900867e9e479e9b687c452c7bd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8f0c756feeb9fb4dbadf12d92e47b80 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/CameraPoseSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8263f5a568c22324c9896011afcfb712 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/Message.cs: -------------------------------------------------------------------------------- 1 | /// 2 | /// Enum used for sending commands from editor host to mobile client 3 | /// 4 | /// This enum must be copied between the host/client projects (until I work on a better way to share code) 5 | /// 6 | public enum Message 7 | { 8 | RefreshSnapshot, 9 | StartRecording, 10 | StopRecording, 11 | AlignMobileCamWithHoloLensCam, 12 | QrCodeUiShownOnMobile, 13 | QrCodeUiHiddenOnMobile, 14 | HoloLensScannedQR, 15 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/Message.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fadfa9fa387df440a081d040b9ec01e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/MessageSourceAndReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56b3190f095275241b9cf749130c36ec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/PoseUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59296b1433912bf4cb68260a80f0745b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/TextureSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2273645de5e3f0e49afb2570737a0230 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/VideoCanvasRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fefdec6831084244ca18f761f075163f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/WebRtcAddOns.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WebRtcAddons", 3 | "rootNamespace": "", 4 | "references": [ 5 | "GUID:f9836ff04eb9ae141acb837e83a62cc9", 6 | "GUID:73d456c551e58394a94a92ad9cd538db", 7 | "GUID:a9420e37d7990b54abdef6688edbe313" 8 | ], 9 | "includePlatforms": [], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": true, 12 | "overrideReferences": false, 13 | "precompiledReferences": [], 14 | "autoReferenced": true, 15 | "defineConstraints": [], 16 | "versionDefines": [], 17 | "noEngineReferences": false 18 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Scripts/WebRtcAddOns/WebRtcAddOns.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4d33ac0087d684d99ee92d1d52b633 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5212bfdaf6a878141bd308af7d01dda1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Shaders/YUVFeedShaderGreenScreenUnlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33f99e02da7d3e4385e00a5c3d61686 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab8b99ffbc2ba00469e00fa7b5f12374 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/BackgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/BackgroundImage.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/Circle.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/QRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/MR-Remoting-Android/Textures/QRCode.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3397ca59aa2845d9b6915a23e597665 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/Plugins/Lumin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cad683986090940a0a1c2d431af3ad9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/Plugins/Lumin/MagicLeapManifestSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 9cf5b356e131a944286fec26d7c40b4e, type: 3} 13 | m_Name: MagicLeapManifestSettings 14 | m_EditorClassIdentifier: 15 | m_MinimumAPILevel: 4 16 | m_PrivilegeGroups: [] 17 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/Plugins/Lumin/MagicLeapManifestSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd3d17bef5f974d19ae58a5a69c484fd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfb9e1a7e8d492545b30d6b19cc4a314 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3265ab4bf004d28a9537516768c1c75 3 | timeCreated: 1484171297 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 2 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 1 10 | characterPadding: 0 11 | includeFontData: 1 12 | use2xBehaviour: 0 13 | fontNames: [] 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | userData: 18 | assetBundleName: 19 | assetBundleVariant: 20 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4586d7c79a09642ee9af2018bd137cd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a32a3f371f53d4bc48a72b7ff053cf13 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/AR Core Loader.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 06042c85f885b4d1886f3ca5a1074eca, type: 3} 13 | m_Name: AR Core Loader 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/AR Core Loader.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b09f0106dcd341a980bb4a4d59799d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/AR Kit Loader.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a18c4d6661b404073b154020b9e2d993, type: 3} 13 | m_Name: AR Kit Loader 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/AR Kit Loader.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0ea855f920d4e3a8db461dc3454566 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/Windows MR Loader.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a140b66429c96344083035352cb7c898, type: 3} 13 | m_Name: Windows MR Loader 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Loaders/Windows MR Loader.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093e39eb86b0c4629b1a94c0c0068fa3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed757dcf74f6042bbb18616489ab6f14 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Core Loader Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 00cb13c61b2744fd786f9f969ce96149, type: 3} 13 | m_Name: AR Core Loader Settings 14 | m_EditorClassIdentifier: 15 | m_StartAndStopSubsystems: 0 16 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Core Loader Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a597533867fee4905a1c05b58df97924 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Core Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 9dae4501572e1418791be3e3bf1f7faa, type: 3} 13 | m_Name: AR Core Settings 14 | m_EditorClassIdentifier: 15 | m_Requirement: 0 16 | m_Depth: 0 17 | m_IgnoreGradleVersion: 0 18 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Core Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0637c20fddd2dfa40a9180a4e4ea95be 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Kit Loader Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 9cac560dd573c4c5088432b9d202f3e7, type: 3} 13 | m_Name: AR Kit Loader Settings 14 | m_EditorClassIdentifier: 15 | m_StartAndStopSubsystems: 0 16 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Kit Loader Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c02f12437be494530a39604e26294a08 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Kit Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 7a3c2811d41034e52a6d6c33ac73a207, type: 3} 13 | m_Name: AR Kit Settings 14 | m_EditorClassIdentifier: 15 | m_Requirement: 0 16 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/AR Kit Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de8a8e4f987434338a4b1062feb8d069 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/Magic Leap Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: c6199fb6640743e43ba76362f0cc36f5, type: 3} 13 | m_Name: Magic Leap Settings 14 | m_EditorClassIdentifier: 15 | m_DepthPrecision: 0 16 | m_ForceMultipass: 0 17 | m_FrameTimingHint: 2 18 | m_GLCacheSettings: 19 | m_Enabled: 0 20 | m_MaxBlobSizeInBytes: 0 21 | m_MaxFileSizeInBytes: 0 22 | m_EnableGestures: 0 23 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/Magic Leap Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eb95d77acb39444e8cf44313496a874 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/Windows MR Package Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-8483602070640853815 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ed912223f7b3af74d8e196b2a4e662b3, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | DepthBufferFormat: 1 16 | UseSharedDepthBuffer: 1 17 | --- !u!114 &11400000 18 | MonoBehaviour: 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_GameObject: {fileID: 0} 24 | m_Enabled: 1 25 | m_EditorHideFlags: 0 26 | m_Script: {fileID: 11500000, guid: e679265d16d650945812b915bb9d5cc3, type: 3} 27 | m_Name: Windows MR Package Settings 28 | m_EditorClassIdentifier: 29 | Keys: 30 | Values: [] 31 | BuildValues: [] 32 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/Settings/Windows MR Package Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 744b813df90924c169af73489b8325de 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58f40b12bbc864f3c96c6505a9a1e1e3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/InitCodeMarker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/InitCodeMarker -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/Packages/MixedReality/com.microsoft.mixedreality.webrtc-2.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Android-App.Unity/Packages/MixedReality/com.microsoft.mixedreality.webrtc-2.0.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_EnableOutputSuspension: 1 16 | m_SpatializerPlugin: 17 | m_AmbisonicDecoderPlugin: 18 | m_DisableAudio: 0 19 | m_VirtualizeEffects: 1 20 | m_RequestedDSPBufferSize: 0 21 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/Packages/com.unity.learn.iet-framework/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Name": "Settings", 3 | "m_Path": "ProjectSettings/Packages/com.unity.learn.iet-framework/Settings.json", 4 | "m_Dictionary": { 5 | "m_DictionaryValues": [ 6 | { 7 | "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 8 | "key": "IET.ShowTutorialsClosedDialog", 9 | "value": "{\"m_Value\":false}" 10 | } 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.20f1 2 | m_EditorVersionWithRevision: 2020.3.20f1 (41c4e627c95f) 3 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - RemoteCamera 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | assetDefaultFramerate: 60 16 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | UnityAdsSettings: 27 | m_Enabled: 0 28 | m_InitializeOnStartup: 1 29 | m_TestMode: 0 30 | m_IosGameId: 31 | m_AndroidGameId: 32 | m_GameIds: {} 33 | m_GameId: 34 | PerformanceReportingSettings: 35 | m_Enabled: 0 36 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | m_CompiledVersion: 0 14 | m_RuntimeVersion: 0 15 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_Settings": [ 3 | "RemoveLegacyInputHelpersForReload" 4 | ] 5 | } -------------------------------------------------------------------------------- /MR-Remoting-Android-App.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "True", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7512d1510dc54bb49aba91e712bb7704 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c916ab18cfe90f4ab14e5d811f102d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/ChannelPacker.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72ba6d7b37f51174bb3c7be2acc8fb0d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/DepthBufferPostProcess.shader: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | // NOTE: MRTK Shaders are versioned via the MRTK.Shaders.sentinel file. 5 | // When making changes to any shader's source file, the value in the sentinel _must_ be incremented. 6 | 7 | Shader "Mixed Reality Toolkit/Depth Buffer Viewer" 8 | { 9 | Properties 10 | { 11 | _DepthTex("Texture", 2D) = "black" {} 12 | _MainTex("Base (RGB)", 2D) = "green" {} 13 | } 14 | 15 | SubShader 16 | { 17 | Pass 18 | { 19 | CGPROGRAM 20 | #pragma vertex vert_img 21 | #pragma fragment frag 22 | 23 | #include "UnityCG.cginc" 24 | 25 | uniform sampler2D _MainTex; 26 | sampler2D _DepthTex; 27 | 28 | float4 frag(v2f_img i) : COLOR 29 | { 30 | return Linear01Depth(SAMPLE_DEPTH_TEXTURE(_DepthTex, i.uv)); 31 | } 32 | ENDCG 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/DepthBufferPostProcess.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e3074f33703cbb4186e9b6c2c958fda 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/InstancedColored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d199a2ca60343bb49ad9a41ddb45a083 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/InvisibleShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54ea9f30be414d86a7260eceb330c449 3 | timeCreated: 1510009044 4 | licenseType: Free 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MRTK.Shaders.sentinel: -------------------------------------------------------------------------------- 1 | ver: 2 -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MRTK.Shaders.sentinel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05852dd420bb9ec4cb7318bfa529d37c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MRTK_Wireframe.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c1653eb4e20b76499141de7bc57c063 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MixedRealityShaderUtils.cginc: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | #ifndef MRTK_SHADER_UTILS 5 | #define MRTK_SHADER_UTILS 6 | 7 | #if defined(_CLIPPING_PLANE) 8 | inline float PointVsPlane(float3 worldPosition, float4 plane) 9 | { 10 | float3 planePosition = plane.xyz * plane.w; 11 | return dot(worldPosition - planePosition, plane.xyz); 12 | } 13 | #endif 14 | 15 | #if defined(_CLIPPING_SPHERE) 16 | inline float PointVsSphere(float3 worldPosition, float4x4 sphereInverseTransform) 17 | { 18 | return length(mul(sphereInverseTransform, float4(worldPosition, 1.0)).xyz) - 0.5; 19 | } 20 | #endif 21 | 22 | #if defined(_CLIPPING_BOX) 23 | inline float PointVsBox(float3 worldPosition, float4x4 boxInverseTransform) 24 | { 25 | float3 distance = abs(mul(boxInverseTransform, float4(worldPosition, 1.0))) - 0.5; 26 | return length(max(distance, 0.0)) + min(max(distance.x, max(distance.y, distance.z)), 0.0); 27 | } 28 | #endif 29 | 30 | 31 | #endif -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MixedRealityShaderUtils.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfab24eea71ce3745be340d7a24fe8eb 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MixedRealityStandard.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bdea20278144b11916d77503ba1467a 3 | timeCreated: 1519154700 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/MixedRealityTextMeshPro.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c504b73bf66872479cd1215fb5ce0fe 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MRTK/Shaders/Text3DShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80c006b91733f1a4991c49af89321ecd 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0eeab7d691611044b4b177b091f7816 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/CustomProfiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a70c8dd75b271bd4baacc5180042254f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/CustomProfiles/New MixedRealitySpatialAwarenessSystemProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7c54e0f214e96c4180fd6262b899dfb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/CustomProfiles/New MixedRealityToolkitConfigurationProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a275f81f97467a4db6a50727b7f554c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/MRTK.Generated.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/MRTK.Generated.sentinel -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/MRTK.Generated.sentinel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbcc858a170c7d44996960719f8d45bf 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/ProjectPreferences.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7586e3de8a5e1dd4abe0daa80fc48b87 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/MixedRealityToolkit.Generated/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f147729dd6f5e3642be02c6dc592b1df 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackageTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e8aacc35c0480e47b95a8f4b322a5fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1afa952cca2b6814699533628b7364d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b051bc30626149f4d86cf333ddd6744b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/.signature.p7s -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e121f79d77e2e324f8dbfd4a38a26766 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/MSBuildForUnity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8e8742dd8a41244a98b8a8e1bf65103 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/MSBuildForUnity/MetaOverrides.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e352d78421a57974c951c33ff790b330 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/MSBuildForUnity/MetaOverrides/InEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 909fb151311081d4babc88bfee11ee82 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Microsoft.MixedReality.QR.0.5.3013.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Microsoft.MixedReality.QR.0.5.3013.nupkg -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Microsoft.MixedReality.QR.0.5.3013.nupkg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8b0179169239924189e65609113f125 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fea2f51ba0585443a0523b13b848542 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c73244acdaa51f04fac1add4629e4374 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/Editor/Microsoft.MixedReality.QR.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Microsoft.MixedReality.QR.Editor", 3 | "references": [], 4 | "optionalUnityReferences": [], 5 | "includePlatforms": [ 6 | "Editor" 7 | ], 8 | "excludePlatforms": [], 9 | "allowUnsafeCode": false, 10 | "overrideReferences": false, 11 | "precompiledReferences": [], 12 | "autoReferenced": true, 13 | "defineConstraints": [], 14 | "versionDefines": [] 15 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/Editor/Microsoft.MixedReality.QR.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6462cc487b34c15be5e40757b5c848c 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/Editor/Microsoft.MixedReality.QR.Init.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ca4c5666f94437e9000be72e5d14780 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c0adc8c9026e9e468c934e03c989cb0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm/Microsoft.MixedReality.QR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm/Microsoft.MixedReality.QR.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80b85a5b8c98f9c498f1b3ac07c3db93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm64/Microsoft.MixedReality.QR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/arm64/Microsoft.MixedReality.QR.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d53f2f3200f22f343a0f6c10ca454fb8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x64/Microsoft.MixedReality.QR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x64/Microsoft.MixedReality.QR.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x64/MonoSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x64/MonoSupport.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fb79fb96f52d2141b27022d0a121b7f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x86/Microsoft.MixedReality.QR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/Unity/x86/Microsoft.MixedReality.QR.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b28108cf6461743a9b3690fa7e9d59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df89031d9a92c74c93ef725e3624061 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/net46.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdce875d4592db5478ccbcadb166ec55 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/net46/Microsoft.MixedReality.QR.DotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/net46/Microsoft.MixedReality.QR.DotNet.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/netstandard2.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706089ca40a78f642aca3eb6a9699ca9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/netstandard2.0/Microsoft.MixedReality.QR.DotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/PackagesLocal/Microsoft.MixedReality.QR.0.5.3013/lib/unity/netstandard2.0/Microsoft.MixedReality.QR.DotNet.dll -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00d5f414edb23884c919c8cc10a82972 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f42d8254c0a3fee44a4851977eae7993 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9da4c798774f7364fbec4812f84dcaab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bcde16bb9018c943922bac1cc03e787 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9ffd776dd4b2e2459eada6d5b4ea244 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eecacd25a9410f4ea0dd8dc32aa29b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox/Scenes/BoundingBoxExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9da574c0affd04d42a6b1e5db09e82b4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox/Scenes/BoundingBoxRuntimeExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7d9284da176d9542af67603dab6088c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f28cc47fc2db974fb354b414c149d78 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundingBox/Scripts/BoundingBoxExampleTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a76745b0a647f444b850e879efd3576 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a082637f29db6054c9d62b189b92163c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4391320932d38fc468b79fe90a653662 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes/BoundsControlConfigs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb4a1c0ade8a37b469dc224fa5ccca0b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes/BoundsControlConfigs/CoffeeCupTranslateHandlesConfiguration.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 9fcb6341cafc3f84994828d3606683d3, type: 3} 13 | m_Name: CoffeeCupTranslateHandlesConfiguration 14 | m_EditorClassIdentifier: 15 | handleMaterial: {fileID: 2100000, guid: 986558eab447a9847bbe138149edc1b4, type: 2} 16 | handleGrabbedMaterial: {fileID: 2100000, guid: bf37b5eab60b288498d02fd524325d10, 17 | type: 2} 18 | handlePrefab: {fileID: 3868891704370700786, guid: f73c916a7266dd941a534f5f0f10a423, 19 | type: 3} 20 | handleSize: 0.016 21 | colliderPadding: {x: 0.016, y: 0.016, z: 0.016} 22 | drawTetherWhenManipulating: 1 23 | handlesIgnoreCollider: {fileID: 0} 24 | handlePrefabColliderType: 1 25 | showHandleForX: 0 26 | showHandleForY: 0 27 | showHandleForZ: 0 28 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes/BoundsControlConfigs/CoffeeCupTranslateHandlesConfiguration.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5a4765d0bf1eb4080d8383440eb2fb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes/BoundsControlExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e660854cfb3955469bbe155141377b3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scenes/BoundsControlRuntimeExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17af63fd0345a35438ae25ed53401ba1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4700d184c1f0a243bb27f09aef93e24 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/BoundsControl/Scripts/BoundsControlRuntimeExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c4729c09ee8e644fb457e1db1945d65 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c49655e1c12548c47a02e25ce9a58420 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Collections/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bb55f92d6264b442b0d29cc193fc2d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Collections/Scenes/ObjectCollectionExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e42ecf99c78b34f9bea423aeced50b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Collections/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b936cfcdfca2ddc418f68c728b05f698 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Collections/Scripts/GridObjectLayoutControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a9e5c05a0a941f4d9a800303572b5f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dialog.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62784eb4097b1e4eb90d1f6e54fdb30 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dialog/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c8bd641eca9c34da25658e49f6109b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dialog/Scenes/DialogExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 245313338ea69944ab8e537d014475a6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dialog/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11956baf696a8440bd3c3ab7c899e15 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dialog/Scripts/DialogExampleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17b5aa22bcf647a4880a453574b84f3b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3508b53301cd7384ab27028f2fa252bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell/BaseDwellSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfa0dda980dc91348859fcd159140176 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell/DwellExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 214a3eff40efe654484f95e0bcb7d473 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell/InstantDwellSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3f9b2bbb7033d545873afe974c8670a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell/ListItemDwell.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b66a019433d7ca4fbd01f1dfd356ede 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Dwell/ToggleDwellSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30ae52b787cce4c469d695927498e7e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a61c55156e3f8a84d875bc7112899a9a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | [assembly: System.Reflection.AssemblyVersion("2.8.2.0")] 4 | [assembly: System.Reflection.AssemblyFileVersion("2.8.2.0")] 5 | 6 | [assembly: System.Reflection.AssemblyProduct("Microsoft® Mixed Reality Toolkit Examples")] 7 | [assembly: System.Reflection.AssemblyCopyright("Copyright © Microsoft Corporation")] 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b6e3952bf064cc4ba586766413a5969 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/MRTK.Demos.UX.Interactables.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Microsoft.MixedReality.Toolkit.Demos.UX.Interactables", 3 | "references": [ 4 | "Microsoft.MixedReality.Toolkit", 5 | "Microsoft.MixedReality.Toolkit.SDK" 6 | ], 7 | "optionalUnityReferences": [], 8 | "includePlatforms": [], 9 | "excludePlatforms": [], 10 | "allowUnsafeCode": false, 11 | "overrideReferences": false, 12 | "precompiledReferences": [], 13 | "autoReferenced": true, 14 | "defineConstraints": [] 15 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/MRTK.Demos.UX.Interactables.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d57ec26792593d44b17cd3f5d582f48 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 345b30fce50563147a3de15b58e69099 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Materials/PhysicalTouchIcon.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3863fcd7207ccb44ab3f95079910b77 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Materials/TextureInteractable.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f855b18af2d538d4f8965917ec01458e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2526a1fc2c3a65a4dba0ee45b2baa389 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Prefabs/Model_Bucky.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50eb8d97f29f335409ec2df393ed6cc5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Prefabs/Model_PushButton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29a6f5316e0868e47adff5eee8945193 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Prefabs/balloon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ceaaf28e492a284fbf57901d04075ad 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Profiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23efba86239f5846ad3797e78582b07 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Profiles/Interactable_MixedRealityInputSystemProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5761d2871f944da4b9600feab3da6bdb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Profiles/Interactable_MixedRealitySpeechCommandsProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47f4f33146ce12645b35ab8d0e6c2234 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Profiles/Interactable_MixedRealityToolkitConfigurationProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 175dc1ba391ca6f4aa519988e39dc385 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ebd60ed96f85694494c3c36693f1220 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Scenes/InteractablesExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cfba91e4f501d048bd6014bb47c4e4c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48763110db2106140b1896b7cbf0013c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Scripts/CustomInteractablesReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447d232efa5d5b14482fc84c26a15a22 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a542a5d475fbc0b439c45350147b0435 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Textures/PhysicalTouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Interactables/Textures/PhysicalTouch.png -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a4dc7cceee4fa2a70e9353579eb787 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bf649cb3faecb9409ea68a8d97220d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines/Materials/OpaqueLinesMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddc1013c5e7bc0841bf61884ea0f39cd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines/Materials/TransparentLinesMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996845b4c28bcf04591d75cb15e433a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92f70fdbeed046bcb64f114ad34d2f2f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Lines/Scenes/LineExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 195db5215d5947f8888e1168ad5e3337 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ManipulationHandler.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe03e0469aaac4047accf7b265832969 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ManipulationHandler/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36d33bbb667bd0745868a4e21fc6cd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ManipulationHandler/Scenes/ManipulationHandlerExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d74027e06372354b9e26c9d79b20d83 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ManipulationHandler/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3db9fd4a85c8adc488799daf7aacdf8b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ManipulationHandler/Scripts/ChangeManipulation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fc9d60754a48fd45ac88fbe3069b4d7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef73726df70401e4c816c097c19aa7b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb82403b0c763d949ace1c2aad693fe1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator/Scenes/ObjectManipulatorExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b9c2a97e9efe14190d15e2542a8b96 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator/Scenes/ObjectManipulatorExamplePhysics.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c36a60f1bc438d43ba73f6732c44f10 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe5c79ec2ea7aa4a9d145c95274f213 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ObjectManipulator/Scripts/ReturnToBounds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10b8dea5113c50c4fb9167c6a952e11f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/PressableButton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd7302bc1ae794849a4709f37390df95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/PressableButton/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0d91b357ef3d224c99b37976d0e878e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/PressableButton/Scenes/PressableButtonExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2d06bb8d7f107d4783a56c796c5c120 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7464b648dc163b04586a752ecc6cdb40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48405c6835217224dab2a6c3b7951db1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Animation/PIDemoAnimationPlay.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e397b11366b51384c86a652a29f5d403 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Animation/PIDemoAnimationWait.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ca98d6f5a541b4089f6f8a9091e247 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Animation/ProgressIndicatorDemoAnimation.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 065b52c6f4f181f47ae44a9e5e22cd97 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Profiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5e1932198f66c24eaf10c0df241aec9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Profiles/ProgressIndicatorDemoConfigurationProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a468861de7214d4f9b208f138201efa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b916e552851ea0498acd9ff89b269f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scenes/ProgressIndicatorExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1066b370599d684f88257dea1c0e4fb 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scenes/ProgressIndicatorExamplesAdditiveLoad.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6656338ce09c49d4cbeb765266d02fb9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scenes/ProgressIndicatorExamplesSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1863827fda1cb34fb79c90d53014753 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 542913a3c1839d249b5bdca538622005 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/IProgressIndicatorDemoObject.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | namespace Microsoft.MixedReality.Toolkit.Examples.Demos 5 | { 6 | public interface IProgressIndicatorDemoObject 7 | { 8 | void StartProgressBehavior(); 9 | } 10 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/IProgressIndicatorDemoObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22fe9958aae7c99499eabe4dd668b514 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/ProgressIndicatorDemo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96f9fbf64044dbe46821efaaa5f3f825 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/ProgressIndicatorDemoAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5e52e2c55868124988ae4114ae71b49 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/ProgressIndicatorDemoAsyncMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dad4b659b9f28c34daf1786e7bb07977 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/ProgressIndicator/Scripts/ProgressIndicatorDemoSceneLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 204186e4353c87040b75b025a3acb433 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11375b4faf3d87a41a5228cd3bb8c9e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slate/SlateExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e8b0c6246dbb74aa04ecd40a57d89c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 236b8a6c87b00c64c864085719f78d91 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaaa3256dcb697343aeea83feadd92ba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider/Scenes/SliderExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 086aad2912678d04e968264b2398004b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd82b7769f295784fbf157c9b9fa3e11 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider/Scripts/SliderLunarLander.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | using Microsoft.MixedReality.Toolkit.UI; 5 | using UnityEngine; 6 | 7 | namespace Microsoft.MixedReality.Toolkit.Examples.Demos 8 | { 9 | [AddComponentMenu("Scripts/MRTK/Examples/SliderLunarLander")] 10 | public class SliderLunarLander : MonoBehaviour 11 | { 12 | [SerializeField] 13 | private Transform transformLandingGear = null; 14 | 15 | public void OnSliderUpdated(SliderEventData eventData) 16 | { 17 | if (transformLandingGear != null) 18 | { 19 | // Rotate the target object using Slider's eventData.NewValue 20 | transformLandingGear.localPosition = new Vector3(transformLandingGear.localPosition.x, 1.0f - eventData.NewValue, transformLandingGear.localPosition.z); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Slider/Scripts/SliderLunarLander.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d3c82c44b554484897ad1cb1c6e798b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5295a354d96f3e847884b1d23a10fa85 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Text/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 079c351bdf835734aac49637a0702de3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Text/Scenes/TextPrefabExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a30d942ddb234c54e93ff550759e382e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Tooltips.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760b8d69b3707d240a5a96c43a73d938 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Tooltips/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8738e818e4da706439eb59b00da7d6d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Samples/Mixed Reality Toolkit Examples/2.8.2/Demos - UX/Tooltips/Scenes/TooltipExamples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de90a43947eced441b4c426e11f35f28 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/ScriptTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecd0c334553edb745b4bfaf2ca45a8d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/ScriptTemplates/81-C# Script-NewBehaviourScript.cs.txt: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using UnityEngine; 4 | 5 | #ROOTNAMESPACEBEGIN# 6 | /// 7 | /// TODO: Class description. 8 | /// 9 | public class #SCRIPTNAME# : MonoBehaviour 10 | { 11 | #NOTRIM# 12 | } 13 | #ROOTNAMESPACEEND# 14 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/ScriptTemplates/81-C# Script-NewBehaviourScript.cs.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b168c631ed0eaf749b4359afbaaeef86 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/ScriptTemplates/84-Shader__Unlit Shader-NewUnlitShader.shader.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eddd1f3863e2bc4c8cf83cb5734b7d2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb86be08ef30bc4d92a4ba1cfd21346 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f138db530c42c44bb1930fbe2d892d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/Scripts/Editor/UPMTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d74c8aa6163a354a874a352d12b950f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3265ab4bf004d28a9537516768c1c75 3 | timeCreated: 1484171297 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 2 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 1 10 | characterPadding: 0 11 | includeFontData: 1 12 | use2xBehaviour: 0 13 | fontNames: [] 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | userData: 18 | assetBundleName: 19 | assetBundleVariant: 20 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c1999ca1653f9745b726a119e04c693 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9406e9fcbe757142bc6bafb7fc8cb42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Loaders/Open XR Loader No Pre Init.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee62ffd6c7e6f3545899783b1fbdd9d4, type: 3} 13 | m_Name: Open XR Loader No Pre Init 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Loaders/Open XR Loader No Pre Init.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27845a04cb0baf947a067c27250d28c4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Loaders/Open XR Loader.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d3552e428dc7646a88de3ed3650f87da, type: 3} 13 | m_Name: Open XR Loader 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Loaders/Open XR Loader.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee7769bed855d0d45989bd82cba3d511 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c041be726fe31548a5a145cda5e6bfe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Settings/OpenXR Editor Settings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 975057b4fdcfb8142b3080d19a5cc712, type: 3} 13 | m_Name: OpenXR Editor Settings 14 | m_EditorClassIdentifier: 15 | Keys: 010000000e000000 16 | Values: 17 | - featureSets: 18 | - com.microsoft.openxr.featureset.wmr 19 | - featureSets: 20 | - com.microsoft.openxr.featureset.hololens 21 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Settings/OpenXR Editor Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3f34200363ebd479150e3607eebdba 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/Settings/OpenXR Package Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43f5f4fcc70d19d48b7a9943e0f75d17 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8301c81397326294c85b7bd08c695edf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.openxr-1.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.openxr-1.4.0.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.examples-2.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.examples-2.8.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.extensions-2.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.extensions-2.8.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.foundation-2.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.foundation-2.8.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.standardassets-2.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.toolkit.standardassets-2.8.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.webrtc-2.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Mixed-Reality-Remoting-Unity/bcb4f68aeb613bdd7504300b6fcd619d6cf59311/MR-Remoting-Host.Unity/Packages/MixedReality/com.microsoft.mixedreality.webrtc-2.0.2.tgz -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34eb03e626ff34f409c67a967b3d864c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15d6c54fe529fe74da18176e4f1fd31e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Materials/SceneCameraFeed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebc7f27013107b646bb22cbaa9cee81b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Materials/YUVFeed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eedd2eb1a2fe914db4f3e8e42b0ce9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/MobileRemotingHost.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9a9f36f634950e4aa8a789dcc4979bd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7cd0a8de10a6f34eaf60380eef270eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Prefabs/QRCodeSpatialGraphNode.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ff1166e45d0bdd499b6a2aa5319e319 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/RenderTextures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8b7e0c38ef49542b3a5664680d5f19 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/RenderTextures/StreamCamera.renderTexture: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!84 &8400000 4 | RenderTexture: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: StreamCamera 10 | m_ImageContentsHash: 11 | serializedVersion: 2 12 | Hash: 00000000000000000000000000000000 13 | m_ForcedFallbackFormat: 4 14 | m_DownscaleFallback: 0 15 | m_IsAlphaChannelOptional: 0 16 | serializedVersion: 3 17 | m_Width: 1920 18 | m_Height: 1080 19 | m_AntiAliasing: 1 20 | m_MipCount: -1 21 | m_DepthFormat: 2 22 | m_ColorFormat: 8 23 | m_MipMap: 0 24 | m_GenerateMips: 1 25 | m_SRGB: 0 26 | m_UseDynamicScale: 0 27 | m_BindMS: 0 28 | m_EnableCompatibleFormat: 1 29 | m_TextureSettings: 30 | serializedVersion: 2 31 | m_FilterMode: 1 32 | m_Aniso: 0 33 | m_MipBias: 0 34 | m_WrapU: 1 35 | m_WrapV: 1 36 | m_WrapW: 1 37 | m_Dimension: 2 38 | m_VolumeDepth: 1 39 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/RenderTextures/StreamCamera.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c39fd2f9ea5550a449094856b702ffc0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 8400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79e65a0c00f202a49919b1864c2e1307 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scenes/MobileHolographicRemotingHost Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27f76452fc8d6f741a2940ac2cfceff9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0694d520029a10429dccdd923e7d815 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/CameraDebug.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using UnityEngine; 4 | 5 | /// 6 | /// TODO: Class description. 7 | /// 8 | public class CameraDebug : MonoBehaviour 9 | { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/CameraDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6caad963781ad594b8b47e9096151f38 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/CameraPoseReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a274cd7998b0604a921f063d4d4c0c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/CameraResolution.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76843a9c840f94e4ab48042cdf08004f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0ebe34e0d0d6cd46905c42216636bf4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/Editor/GameViewRecorder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb115ea4dff9fdd4998d1d0decf0572a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/Editor/MRMobileRemotingEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 877286d4161a2a84ca3ea25aa964e22a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/Message.cs: -------------------------------------------------------------------------------- 1 | /// 2 | /// Enum used for sending commands from editor host to mobile client 3 | /// 4 | /// This enum must be copied between the host/client projects (until I work on a better way to share code) 5 | /// 6 | public enum Message 7 | { 8 | RefreshSnapshot, 9 | StartRecording, 10 | StopRecording, 11 | AlignMobileCamWithHoloLensCam, 12 | QrCodeUiShownOnMobile, 13 | QrCodeUiHiddenOnMobile, 14 | HoloLensScannedQR, 15 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/Message.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ea94a8da0d4d5049abe33d1fbc3d9b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/MessageSourceAndReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34d4348260e9a944ba488440b8f75070 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/MobileCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6daef72cd5ebfaa48a28528f6f934721 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/PoseUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c08672d39229e74a9745b6457859bee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b0be969774221a4380a8c200b3dba96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QRCodeTracker.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "QRCodeTracker", 3 | "rootNamespace": "", 4 | "references": [ 5 | "GUID:3b76ab8242cc35d479edf0a949d56d59", 6 | "GUID:a6462cc487b34c15be5e40757b5c848c", 7 | "GUID:db18615726f95db48a173643e980a2b0", 8 | "GUID:c07adb8a81c425743b901c73a99547ae" 9 | ], 10 | "includePlatforms": [], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": false, 13 | "overrideReferences": false, 14 | "precompiledReferences": [], 15 | "autoReferenced": true, 16 | "defineConstraints": [], 17 | "versionDefines": [], 18 | "noEngineReferences": false 19 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QRCodeTracker.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f58ea179150d24c48bffba7b151e3c12 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QrAlignment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7a6c400ae7dcb0469124ddd2c7cac64 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QrCodeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cc9bb5cd426cad488ee084b97488871 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QrRecognisedEvent.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using System; 4 | using UnityEngine; 5 | using UnityEngine.Events; 6 | 7 | namespace MRMobileRemoting 8 | { 9 | [Serializable] 10 | public class QrRecognisedEvent : UnityEvent { } 11 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/QrRecognisedEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad67d5e579d93e241a4697b68f5f9713 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/QRCodeTracker/SpatialGraphNodeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2cbfa84bff17b247a6dbadc031cc41f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/Scripts/TextureReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d59b475b2fbf5a146b8723f25006e00b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/Editor/microsoft.mixedreality.xr-mobile-remoting.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db18615726f95db48a173643e980a2b0 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/README.md: -------------------------------------------------------------------------------- 1 | # MR Mobile Remoting 2 | 3 | Docs, releases and code: https://github.com/microsoft/Mixed-Reality-Remoting-Unity -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53defc3890860184ba7a87a6a09d4fcc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.microsoft.mixedrealitystudios.mr-mobile-remoting", 3 | "version": "0.0.1", 4 | "displayName": "MR Mobile Remoting", 5 | "description": "MR Mobile Remoting enables you to view and record a HoloLens scene (rendered in Unity play mode) on an Android phone with two component output:\n1. 3D scene content up to 4K\n2: Front-facing phone camera video", 6 | "documentationUrl": "https://github.com/microsoft/Mixed-Reality-Remoting-Unity/", 7 | "changelogUrl": "https://github.com/microsoft/Mixed-Reality-Remoting-Unity/blob/main/CHANGELOG.md", 8 | "keywords": [ 9 | "mixed-reality" 10 | ], 11 | "dependencies": { 12 | "com.unity.recorder": "2.5.7", 13 | "com.microsoft.mixedreality.openxr": "1.4.0", 14 | "com.microsoft.mixedreality.webrtc": "2.0.2" 15 | }, 16 | "author": { 17 | "name": "Mark Nguyen | Microsoft", 18 | "email": "manguyen@microsoft.com", 19 | "url": "https://www.microsoft.com/" 20 | } 21 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/Packages/com.microsoft.mixedrealitystudios.xr-mobile-remoting/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9df11d44055c6514280cb6ae75c0b775 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_EnableOutputSuspension: 1 16 | m_SpatializerPlugin: 17 | m_AmbisonicDecoderPlugin: 18 | m_DisableAudio: 0 19 | m_VirtualizeEffects: 1 20 | m_RequestedDSPBufferSize: 0 21 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Packages/com.microsoft.mixedrealitystudios.mr-mobile-remoting/Editor/Scenes/MobileHolographicRemotingHost 10 | Example.unity 11 | guid: 27f76452fc8d6f741a2940ac2cfceff9 12 | m_configObjects: 13 | com.unity.xr.management.loader_settings: {fileID: 11400000, guid: 8301c81397326294c85b7bd08c695edf, 14 | type: 2} 15 | com.unity.xr.openxr.settings4: {fileID: 11400000, guid: 43f5f4fcc70d19d48b7a9943e0f75d17, 16 | type: 2} 17 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.20f1 2 | m_EditorVersionWithRevision: 2020.3.20f1 (41c4e627c95f) 3 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: 7 | - StreamCamera 8 | - RecordingCamera 9 | layers: 10 | - Default 11 | - TransparentFX 12 | - Ignore Raycast 13 | - 14 | - Water 15 | - UI 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | - 41 | - Spatial Awareness 42 | m_SortingLayers: 43 | - name: Default 44 | uniqueID: 0 45 | locked: 0 46 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_Settings": [ 3 | "RemoveLegacyInputHelpersForReload" 4 | ] 5 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /MR-Remoting-Host.Unity/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MR-Remoting-Host.Unity", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": {} 6 | } 7 | -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Support 2 | 3 | ## How to file issues and get help 4 | 5 | This project uses GitHub Issues to track bugs and feature requests. Please search the existing 6 | issues before filing new issues to avoid duplicates. For new issues, file your bug or 7 | feature request as a new Issue. 8 | 9 | For help and questions about using this project, please use discussions. 10 | 11 | ## Microsoft Support Policy 12 | 13 | Support for this **PROJECT or PRODUCT** is limited to the resources listed above. 14 | -------------------------------------------------------------------------------- /build.ps1: -------------------------------------------------------------------------------- 1 | $unityPath = "C:\Program Files\Unity\Hub\Editor\2020.3.20f1\Editor\Unity.exe" 2 | $buildPath = [IO.Path]::Combine($PSScriptRoot, 'build') 3 | 4 | # Build APK 5 | $apkBuildArgs = @("-batchmode", "-projectpath ./MR-Remoting-Android-App.Unity", "-executeMethod BuildApk.Build", "-TargetFolder ""$buildPath""", "-logFile build/build-apk.log") 6 | Start-Process -FilePath $unityPath -ArgumentList $apkBuildArgs -Wait 7 | 8 | # Build UPM 9 | $upmBuildArgs = @("-batchmode", "-projectpath ./MR-Remoting-Host.Unity", "-executeMethod MRMobileRemoting.UPMTools.CreatePackage", "-TargetFolder ""$buildPath""", "-logFile build/build-unity-package.log") 10 | Start-Process -FilePath $unityPath -ArgumentList $upmBuildArgs -Wait -------------------------------------------------------------------------------- /node-dss/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "commonjs": true, 4 | "es6": true, 5 | "node": true 6 | }, 7 | "extends": "standard", 8 | "globals": { 9 | "Atomics": "readonly", 10 | "SharedArrayBuffer": "readonly" 11 | }, 12 | "parserOptions": { 13 | "ecmaVersion": 2018 14 | }, 15 | "rules": { 16 | } 17 | } -------------------------------------------------------------------------------- /node-dss/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /node-dss/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | script: 3 | - npm test 4 | node_js: 5 | - "node" 6 | - "lts/*" 7 | -------------------------------------------------------------------------------- /node-dss/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Ben Greenier 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /node-dss/bin/dss.js: -------------------------------------------------------------------------------- 1 | const http = require('http') 2 | const finalhandler = require('finalhandler') 3 | const debug = require('debug')('dss:boot') 4 | const router = require('../index') 5 | 6 | const server = http.createServer(function (req, res) { 7 | router(req, res, finalhandler(req, res)) 8 | }) 9 | 10 | const bind = server.listen(process.env.PORT || 3000, () => { 11 | debug(`online @ ${bind.address().port}`) 12 | }) 13 | -------------------------------------------------------------------------------- /node-dss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dss", 3 | "version": "1.0.0", 4 | "description": "dead simple signalling for webrtc", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node bin/dss.js", 8 | "lint": "eslint .", 9 | "test": "mocha" 10 | }, 11 | "keywords": [ 12 | "webrtc", 13 | "signal", 14 | "simple" 15 | ], 16 | "author": "Ben Greenier", 17 | "license": "MIT", 18 | "dependencies": { 19 | "body-parser": "^1.18.3", 20 | "debug": "^4.3.1", 21 | "finalhandler": "^1.1.1", 22 | "morgan": "^1.9.1", 23 | "router": "^1.3.3" 24 | }, 25 | "devDependencies": { 26 | "eslint": "^5.14.1", 27 | "eslint-config-standard": "^12.0.0", 28 | "eslint-plugin-import": "^2.16.0", 29 | "eslint-plugin-node": "^8.0.1", 30 | "eslint-plugin-promise": "^4.0.1", 31 | "eslint-plugin-standard": "^4.0.0", 32 | "mocha": "^6.0.2", 33 | "supertest": "^3.4.2" 34 | } 35 | } 36 | --------------------------------------------------------------------------------