├── ArtSources ├── Animals.unitypackage ├── desert-environment.blend ├── docs │ └── images │ │ ├── unity-xr-settings-1.pxm │ │ ├── unity-xr-settings-2.pxm │ │ ├── unity-xr-settings-3.pxm │ │ ├── unity-xr-settings-4.pxm │ │ ├── unity-xr-settings-5.pxm │ │ ├── unity-xr-settings-6.pxm │ │ └── unity-xr-settings-7.pxm ├── handL.blend └── handR.blend ├── LICENSE ├── Packages └── webxr │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ ├── WebXR.Editor.asmdef │ ├── WebXR.Editor.asmdef.meta │ ├── WebXRMenu.cs │ └── WebXRMenu.cs.meta │ ├── Hidden~ │ └── WebGLTemplates │ │ ├── WebXR.meta │ │ ├── WebXR │ │ ├── TemplateData.meta │ │ ├── TemplateData │ │ │ ├── UnityProgress.js │ │ │ ├── UnityProgress.js.meta │ │ │ ├── favicon.ico │ │ │ ├── favicon.ico.meta │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen.png.meta │ │ │ ├── progressEmpty.Dark.png │ │ │ ├── progressEmpty.Dark.png.meta │ │ │ ├── progressEmpty.Light.png │ │ │ ├── progressEmpty.Light.png.meta │ │ │ ├── progressFull.Dark.png │ │ │ ├── progressFull.Dark.png.meta │ │ │ ├── progressFull.Light.png │ │ │ ├── progressFull.Light.png.meta │ │ │ ├── progressLogo.Dark.png │ │ │ ├── progressLogo.Dark.png.meta │ │ │ ├── progressLogo.Light.png │ │ │ ├── progressLogo.Light.png.meta │ │ │ ├── style.css │ │ │ ├── style.css.meta │ │ │ ├── webgl-logo.png │ │ │ └── webgl-logo.png.meta │ │ ├── gl-matrix-min.js │ │ ├── gl-matrix-min.js.meta │ │ ├── index.html │ │ ├── index.html.meta │ │ ├── thumbnail.png │ │ ├── thumbnail.png.meta │ │ ├── webxr.js │ │ └── webxr.js.meta │ │ ├── WebXRFullView.meta │ │ └── WebXRFullView │ │ ├── TemplateData.meta │ │ ├── TemplateData │ │ ├── UnityProgress.js │ │ ├── UnityProgress.js.meta │ │ ├── favicon.ico │ │ ├── favicon.ico.meta │ │ ├── fullscreen.png │ │ ├── fullscreen.png.meta │ │ ├── progressEmpty.Dark.png │ │ ├── progressEmpty.Dark.png.meta │ │ ├── progressEmpty.Light.png │ │ ├── progressEmpty.Light.png.meta │ │ ├── progressFull.Dark.png │ │ ├── progressFull.Dark.png.meta │ │ ├── progressFull.Light.png │ │ ├── progressFull.Light.png.meta │ │ ├── progressLogo.Dark.png │ │ ├── progressLogo.Dark.png.meta │ │ ├── progressLogo.Light.png │ │ ├── progressLogo.Light.png.meta │ │ ├── style.css │ │ ├── style.css.meta │ │ ├── webgl-logo.png │ │ └── webgl-logo.png.meta │ │ ├── gl-matrix-min.js │ │ ├── gl-matrix-min.js.meta │ │ ├── index.html │ │ ├── index.html.meta │ │ ├── thumbnail.png │ │ ├── thumbnail.png.meta │ │ ├── webxr.js │ │ └── webxr.js.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── Plugins.meta │ ├── Plugins │ │ ├── WebGL.meta │ │ └── WebGL │ │ │ ├── transparent_bg.jslib │ │ │ ├── transparent_bg.jslib.meta │ │ │ ├── webxr.c │ │ │ ├── webxr.c.meta │ │ │ ├── webxr.jslib │ │ │ ├── webxr.jslib.meta │ │ │ ├── webxr.jspre │ │ │ └── webxr.jspre.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── WebXRCamera.cs │ │ ├── WebXRCamera.cs.meta │ │ ├── WebXRController.cs │ │ ├── WebXRController.cs.meta │ │ ├── WebXRControllerData.cs │ │ ├── WebXRControllerData.cs.meta │ │ ├── WebXRControllerInputMap.cs │ │ ├── WebXRControllerInputMap.cs.meta │ │ ├── WebXRDisplayCapabilities.cs │ │ ├── WebXRDisplayCapabilities.cs.meta │ │ ├── WebXRManager.cs │ │ ├── WebXRManager.cs.meta │ │ ├── WebXRMatrixUtil.cs │ │ └── WebXRMatrixUtil.cs.meta │ ├── WebXR.asmdef │ └── WebXR.asmdef.meta │ ├── Third Party Notices.md │ ├── Third Party Notices.md.meta │ ├── package.json │ └── package.json.meta ├── README.md └── UnityProject ├── .vs └── UnityProject │ └── v16 │ └── .suo ├── Assets ├── Packages.meta ├── Packages │ ├── webxr.meta │ └── webxr │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── WebXR.Editor.asmdef │ │ ├── WebXR.Editor.asmdef.meta │ │ ├── WebXRMenu.cs │ │ └── WebXRMenu.cs.meta │ │ ├── Hidden~ │ │ └── WebGLTemplates │ │ │ ├── WebXR.meta │ │ │ ├── WebXR │ │ │ ├── TemplateData.meta │ │ │ ├── TemplateData │ │ │ │ ├── UnityProgress.js │ │ │ │ ├── UnityProgress.js.meta │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.ico.meta │ │ │ │ ├── fullscreen.png │ │ │ │ ├── fullscreen.png.meta │ │ │ │ ├── progressEmpty.Dark.png │ │ │ │ ├── progressEmpty.Dark.png.meta │ │ │ │ ├── progressEmpty.Light.png │ │ │ │ ├── progressEmpty.Light.png.meta │ │ │ │ ├── progressFull.Dark.png │ │ │ │ ├── progressFull.Dark.png.meta │ │ │ │ ├── progressFull.Light.png │ │ │ │ ├── progressFull.Light.png.meta │ │ │ │ ├── progressLogo.Dark.png │ │ │ │ ├── progressLogo.Dark.png.meta │ │ │ │ ├── progressLogo.Light.png │ │ │ │ ├── progressLogo.Light.png.meta │ │ │ │ ├── style.css │ │ │ │ ├── style.css.meta │ │ │ │ ├── webgl-logo.png │ │ │ │ └── webgl-logo.png.meta │ │ │ ├── gl-matrix-min.js │ │ │ ├── gl-matrix-min.js.meta │ │ │ ├── index.html │ │ │ ├── index.html.meta │ │ │ ├── thumbnail.png │ │ │ ├── thumbnail.png.meta │ │ │ ├── webxr.js │ │ │ └── webxr.js.meta │ │ │ ├── WebXRFullView.meta │ │ │ └── WebXRFullView │ │ │ ├── TemplateData.meta │ │ │ ├── TemplateData │ │ │ ├── UnityProgress.js │ │ │ ├── UnityProgress.js.meta │ │ │ ├── favicon.ico │ │ │ ├── favicon.ico.meta │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen.png.meta │ │ │ ├── progressEmpty.Dark.png │ │ │ ├── progressEmpty.Dark.png.meta │ │ │ ├── progressEmpty.Light.png │ │ │ ├── progressEmpty.Light.png.meta │ │ │ ├── progressFull.Dark.png │ │ │ ├── progressFull.Dark.png.meta │ │ │ ├── progressFull.Light.png │ │ │ ├── progressFull.Light.png.meta │ │ │ ├── progressLogo.Dark.png │ │ │ ├── progressLogo.Dark.png.meta │ │ │ ├── progressLogo.Light.png │ │ │ ├── progressLogo.Light.png.meta │ │ │ ├── style.css │ │ │ ├── style.css.meta │ │ │ ├── webgl-logo.png │ │ │ └── webgl-logo.png.meta │ │ │ ├── gl-matrix-min.js │ │ │ ├── gl-matrix-min.js.meta │ │ │ ├── index.html │ │ │ ├── index.html.meta │ │ │ ├── thumbnail.png │ │ │ ├── thumbnail.png.meta │ │ │ ├── webxr.js │ │ │ └── webxr.js.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── WebGL.meta │ │ │ └── WebGL │ │ │ │ ├── transparent_bg.jslib │ │ │ │ ├── transparent_bg.jslib.meta │ │ │ │ ├── webxr.c │ │ │ │ ├── webxr.c.meta │ │ │ │ ├── webxr.jslib │ │ │ │ ├── webxr.jslib.meta │ │ │ │ ├── webxr.jspre │ │ │ │ └── webxr.jspre.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── WebXRCamera.cs │ │ │ ├── WebXRCamera.cs.meta │ │ │ ├── WebXRController.cs │ │ │ ├── WebXRController.cs.meta │ │ │ ├── WebXRControllerData.cs │ │ │ ├── WebXRControllerData.cs.meta │ │ │ ├── WebXRControllerInputMap.cs │ │ │ ├── WebXRControllerInputMap.cs.meta │ │ │ ├── WebXRDisplayCapabilities.cs │ │ │ ├── WebXRDisplayCapabilities.cs.meta │ │ │ ├── WebXRManager.cs │ │ │ ├── WebXRManager.cs.meta │ │ │ ├── WebXRMatrixUtil.cs │ │ │ └── WebXRMatrixUtil.cs.meta │ │ ├── WebXR.asmdef │ │ └── WebXR.asmdef.meta │ │ ├── Third Party Notices.md │ │ ├── Third Party Notices.md.meta │ │ ├── package.json │ │ └── package.json.meta ├── WebGLTemplates.meta ├── WebGLTemplates │ ├── WebXR.meta │ ├── WebXR │ │ ├── TemplateData.meta │ │ ├── TemplateData │ │ │ ├── UnityProgress.js │ │ │ ├── UnityProgress.js.meta │ │ │ ├── favicon.ico │ │ │ ├── favicon.ico.meta │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen.png.meta │ │ │ ├── progressEmpty.Dark.png │ │ │ ├── progressEmpty.Dark.png.meta │ │ │ ├── progressEmpty.Light.png │ │ │ ├── progressEmpty.Light.png.meta │ │ │ ├── progressFull.Dark.png │ │ │ ├── progressFull.Dark.png.meta │ │ │ ├── progressFull.Light.png │ │ │ ├── progressFull.Light.png.meta │ │ │ ├── progressLogo.Dark.png │ │ │ ├── progressLogo.Dark.png.meta │ │ │ ├── progressLogo.Light.png │ │ │ ├── progressLogo.Light.png.meta │ │ │ ├── style.css │ │ │ ├── style.css.meta │ │ │ ├── webgl-logo.png │ │ │ └── webgl-logo.png.meta │ │ ├── gl-matrix-min.js │ │ ├── gl-matrix-min.js.meta │ │ ├── index.html │ │ ├── index.html.meta │ │ ├── thumbnail.png │ │ ├── thumbnail.png.meta │ │ ├── webxr.js │ │ └── webxr.js.meta │ ├── WebXRFullView.meta │ └── WebXRFullView │ │ ├── TemplateData.meta │ │ ├── TemplateData │ │ ├── UnityProgress.js │ │ ├── UnityProgress.js.meta │ │ ├── favicon.ico │ │ ├── favicon.ico.meta │ │ ├── fullscreen.png │ │ ├── fullscreen.png.meta │ │ ├── progressEmpty.Dark.png │ │ ├── progressEmpty.Dark.png.meta │ │ ├── progressEmpty.Light.png │ │ ├── progressEmpty.Light.png.meta │ │ ├── progressFull.Dark.png │ │ ├── progressFull.Dark.png.meta │ │ ├── progressFull.Light.png │ │ ├── progressFull.Light.png.meta │ │ ├── progressLogo.Dark.png │ │ ├── progressLogo.Dark.png.meta │ │ ├── progressLogo.Light.png │ │ ├── progressLogo.Light.png.meta │ │ ├── style.css │ │ ├── style.css.meta │ │ ├── webgl-logo.png │ │ └── webgl-logo.png.meta │ │ ├── gl-matrix-min.js │ │ ├── gl-matrix-min.js.meta │ │ ├── index.html │ │ ├── index.html.meta │ │ ├── thumbnail.png │ │ ├── thumbnail.png.meta │ │ ├── webxr.js │ │ └── webxr.js.meta ├── WebXR.meta └── WebXR │ ├── Samples.meta │ └── Samples │ ├── Desert.meta │ └── Desert │ ├── Animation.meta │ ├── Animation │ ├── Pointer.anim │ ├── Pointer.anim.meta │ ├── arrow.controller │ └── arrow.controller.meta │ ├── ControllersMap.meta │ ├── ControllersMap │ ├── LeftControllerMap.asset │ ├── LeftControllerMap.asset.meta │ ├── RightControllerMap.asset │ └── RightControllerMap.asset.meta │ ├── Images.meta │ ├── Images │ ├── BgButton.png │ ├── BgButton.png.meta │ ├── ClickHerePlace.png │ └── ClickHerePlace.png.meta │ ├── Materials.meta │ ├── Materials │ ├── Blue.mat │ ├── Blue.mat.meta │ ├── Cyan.mat │ ├── Cyan.mat.meta │ ├── Green.mat │ ├── Green.mat.meta │ ├── Ground.mat │ ├── Ground.mat.meta │ ├── Material.mat │ ├── Material.mat.meta │ ├── Orange.mat │ ├── Orange.mat.meta │ ├── Pink.mat │ ├── Pink.mat.meta │ ├── Red.mat │ ├── Red.mat.meta │ ├── ReflectedMat.mat │ ├── ReflectedMat.mat.meta │ ├── SkyBox.mat │ ├── SkyBox.mat.meta │ ├── Standard1.mat │ ├── Standard1.mat.meta │ ├── Standard3.mat │ ├── Standard3.mat.meta │ ├── TransparentTest.mat │ ├── TransparentTest.mat.meta │ ├── White.mat │ ├── White.mat.meta │ ├── Yellow.mat │ ├── Yellow.mat.meta │ ├── cube-sea.mat │ └── cube-sea.mat.meta │ ├── Models.meta │ ├── Models │ ├── Desert Environment.meta │ ├── Desert Environment │ │ ├── desert-environment.mtl │ │ ├── desert-environment.mtl.meta │ │ ├── desert-environment.obj │ │ └── desert-environment.obj.meta │ ├── TakeL.controller │ ├── TakeL.controller.meta │ ├── TakeR.controller │ ├── TakeR.controller.meta │ ├── arrow.fbx │ ├── arrow.fbx.meta │ ├── cactus.meta │ ├── cactus │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Saguaro_BaseColor 1.mat │ │ │ ├── Saguaro_BaseColor 1.mat.meta │ │ │ ├── Saguaro_BaseColor 2.mat │ │ │ ├── Saguaro_BaseColor 2.mat.meta │ │ │ ├── Saguaro_BaseColor 3.mat │ │ │ ├── Saguaro_BaseColor 3.mat.meta │ │ │ ├── Saguaro_BaseColor.mat │ │ │ └── Saguaro_BaseColor.mat.meta │ │ ├── Saguaro.obj │ │ ├── Saguaro.obj.meta │ │ ├── Saguaro_BaseColor.png │ │ └── Saguaro_BaseColor.png.meta │ ├── handL.dae │ ├── handL.dae.meta │ ├── handR.dae │ ├── handR.dae.meta │ ├── pipeorgancactus.meta │ └── pipeorgancactus │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── PipeOrganCactus_BaseColor.mat │ │ └── PipeOrganCactus_BaseColor.mat.meta │ │ ├── PipeOrganCactus.obj │ │ ├── PipeOrganCactus.obj.meta │ │ ├── PipeOrganCactus_BaseColor.png │ │ └── PipeOrganCactus_BaseColor.png.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── PlaceHere.prefab │ ├── PlaceHere.prefab.meta │ ├── WebXRCameraSet.prefab │ └── WebXRCameraSet.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ ├── Desert.meta │ ├── Desert.unity │ ├── Desert.unity.meta │ └── Desert │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── Lightmap-0_comp_light.exr │ │ ├── Lightmap-0_comp_light.exr.meta │ │ ├── Lightmap-1_comp_light.exr │ │ ├── Lightmap-1_comp_light.exr.meta │ │ ├── ReflectionProbe-0.exr │ │ ├── ReflectionProbe-0.exr.meta │ │ ├── ReflectionProbe-1.exr │ │ ├── ReflectionProbe-1.exr.meta │ │ ├── ReflectionProbe-2.exr │ │ ├── ReflectionProbe-2.exr.meta │ │ ├── ReflectionProbe-3.exr │ │ ├── ReflectionProbe-3.exr.meta │ │ ├── ReflectionProbe-4.exr │ │ ├── ReflectionProbe-4.exr.meta │ │ ├── ReflectionProbe-5.exr │ │ ├── ReflectionProbe-5.exr.meta │ │ ├── ReflectionProbe-6.exr │ │ └── ReflectionProbe-6.exr.meta │ ├── Scripts.meta │ ├── Scripts │ ├── ControllerInteraction.cs │ ├── ControllerInteraction.cs.meta │ ├── FPSCounter.cs │ ├── FPSCounter.cs.meta │ ├── MouseDragObject.cs │ ├── MouseDragObject.cs.meta │ ├── SceneHitTest.cs │ ├── SceneHitTest.cs.meta │ ├── WebXR.Samples.Scripts.asmdef │ └── WebXR.Samples.Scripts.asmdef.meta │ ├── Sounds.meta │ ├── Sounds │ ├── wind-soundscape.mp3 │ └── wind-soundscape.mp3.meta │ ├── Textures.meta │ └── Textures │ ├── cube-sea.png │ ├── cube-sea.png.meta │ ├── ground.png │ ├── ground.png.meta │ ├── groundnormal.png │ └── groundnormal.png.meta ├── Packages ├── manifest.json ├── packages-lock.json └── webxr ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── Unity.Rider.Editor.csproj ├── Unity.Timeline.Editor.csproj ├── Unity.Timeline.csproj ├── Unity.VSCode.Editor.csproj ├── UnityEditor.TestRunner.csproj ├── UnityEngine.TestRunner.csproj ├── UnityProject.sln ├── WebXR.Editor.csproj ├── WebXR.Samples.Scripts.csproj ├── WebXR.csproj └── obj └── Debug ├── Unity.Timeline.csprojAssemblyReference.cache ├── UnityEditor.TestRunner.csprojAssemblyReference.cache ├── UnityEngine.TestRunner.csprojAssemblyReference.cache ├── WebXR.Samples.Scripts.csprojAssemblyReference.cache └── WebXR.csprojAssemblyReference.cache /ArtSources/Animals.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/Animals.unitypackage -------------------------------------------------------------------------------- /ArtSources/desert-environment.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/desert-environment.blend -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-1.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-2.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-3.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-3.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-4.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-4.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-5.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-5.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-6.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-6.pxm -------------------------------------------------------------------------------- /ArtSources/docs/images/unity-xr-settings-7.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/docs/images/unity-xr-settings-7.pxm -------------------------------------------------------------------------------- /ArtSources/handL.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/handL.blend -------------------------------------------------------------------------------- /ArtSources/handR.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/ArtSources/handR.blend -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/webxr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/CHANGELOG.md -------------------------------------------------------------------------------- /Packages/webxr/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Packages/webxr/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Editor.meta -------------------------------------------------------------------------------- /Packages/webxr/Editor/WebXR.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Editor/WebXR.Editor.asmdef -------------------------------------------------------------------------------- /Packages/webxr/Editor/WebXR.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Editor/WebXR.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/webxr/Editor/WebXRMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Editor/WebXRMenu.cs -------------------------------------------------------------------------------- /Packages/webxr/Editor/WebXRMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Editor/WebXRMenu.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png.meta -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js -------------------------------------------------------------------------------- /Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js.meta -------------------------------------------------------------------------------- /Packages/webxr/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/LICENSE.md -------------------------------------------------------------------------------- /Packages/webxr/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/LICENSE.md.meta -------------------------------------------------------------------------------- /Packages/webxr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/README.md -------------------------------------------------------------------------------- /Packages/webxr/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/README.md.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.c -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.c.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.c.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRCamera.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRCamera.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRController.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRController.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRControllerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRControllerData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRManager.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRManager.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs -------------------------------------------------------------------------------- /Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs.meta -------------------------------------------------------------------------------- /Packages/webxr/Runtime/WebXR.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/WebXR.asmdef -------------------------------------------------------------------------------- /Packages/webxr/Runtime/WebXR.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Runtime/WebXR.asmdef.meta -------------------------------------------------------------------------------- /Packages/webxr/Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Third Party Notices.md -------------------------------------------------------------------------------- /Packages/webxr/Third Party Notices.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/Third Party Notices.md.meta -------------------------------------------------------------------------------- /Packages/webxr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/package.json -------------------------------------------------------------------------------- /Packages/webxr/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/Packages/webxr/package.json.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/README.md -------------------------------------------------------------------------------- /UnityProject/.vs/UnityProject/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/.vs/UnityProject/v16/.suo -------------------------------------------------------------------------------- /UnityProject/Assets/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/CHANGELOG.md -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/CHANGELOG.md.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Editor.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Editor/WebXR.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Editor/WebXR.Editor.asmdef -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Editor/WebXR.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Editor/WebXR.Editor.asmdef.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Editor/WebXRMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Editor/WebXRMenu.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Editor/WebXRMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Editor/WebXRMenu.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/style.css.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/index.html.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/thumbnail.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXR/webxr.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/index.html.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/thumbnail.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Hidden~/WebGLTemplates/WebXRFullView/webxr.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/LICENSE.md -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/LICENSE.md.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/README.md -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/README.md.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/transparent_bg.jslib.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.c -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.c.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.c.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jslib.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRCamera.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRCamera.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRController.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRController.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerData.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRControllerInputMap.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRDisplayCapabilities.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRManager.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRManager.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/Scripts/WebXRMatrixUtil.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/WebXR.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/WebXR.asmdef -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Runtime/WebXR.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Runtime/WebXR.asmdef.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Third Party Notices.md -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/Third Party Notices.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/Third Party Notices.md.meta -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/package.json -------------------------------------------------------------------------------- /UnityProject/Assets/Packages/webxr/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/Packages/webxr/package.json.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/favicon.ico -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/style.css -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/style.css.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/gl-matrix-min.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/index.html -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/index.html.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/thumbnail.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/thumbnail.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/webxr.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXR/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXR/webxr.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/UnityProgress.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/fullscreen.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressEmpty.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressFull.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Dark.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/progressLogo.Light.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/style.css -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/style.css.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/gl-matrix-min.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/gl-matrix-min.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/index.html -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/index.html.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/thumbnail.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/thumbnail.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/webxr.js -------------------------------------------------------------------------------- /UnityProject/Assets/WebGLTemplates/WebXRFullView/webxr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebGLTemplates/WebXRFullView/webxr.js.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Animation.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Animation/Pointer.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Animation/Pointer.anim -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Animation/Pointer.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Animation/Pointer.anim.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Animation/arrow.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Animation/arrow.controller -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Animation/arrow.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Animation/arrow.controller.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/ControllersMap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/ControllersMap.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/LeftControllerMap.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/LeftControllerMap.asset -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/LeftControllerMap.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/LeftControllerMap.asset.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/RightControllerMap.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/RightControllerMap.asset -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/RightControllerMap.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/ControllersMap/RightControllerMap.asset.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Images.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Images/BgButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Images/BgButton.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Images/BgButton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Images/BgButton.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Images/ClickHerePlace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Images/ClickHerePlace.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Images/ClickHerePlace.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Images/ClickHerePlace.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Blue.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Blue.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Cyan.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Cyan.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Cyan.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Cyan.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Green.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Green.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Green.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Ground.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Ground.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Material.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Material.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Orange.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Orange.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Orange.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Orange.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Pink.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Pink.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Pink.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Pink.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Red.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Red.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/ReflectedMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/ReflectedMat.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/ReflectedMat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/ReflectedMat.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/SkyBox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/SkyBox.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/SkyBox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/SkyBox.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard1.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard1.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard3.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Standard3.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/TransparentTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/TransparentTest.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/TransparentTest.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/TransparentTest.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/White.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/White.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/White.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/White.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Yellow.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/Yellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/Yellow.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/cube-sea.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/cube-sea.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Materials/cube-sea.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Materials/cube-sea.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.mtl -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.mtl.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.obj -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/Desert Environment/desert-environment.obj.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/TakeL.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/TakeL.controller -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/TakeL.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/TakeL.controller.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/TakeR.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/TakeR.controller -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/TakeR.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/TakeR.controller.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/arrow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/arrow.fbx -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/arrow.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/arrow.fbx.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 1.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 1.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 2.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 2.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 3.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor 3.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Materials/Saguaro_BaseColor.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro.obj -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro.obj.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro_BaseColor.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro_BaseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/cactus/Saguaro_BaseColor.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/handL.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/handL.dae -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/handL.dae.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/handL.dae.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/handR.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/handR.dae -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/handR.dae.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/handR.dae.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials/PipeOrganCactus_BaseColor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials/PipeOrganCactus_BaseColor.mat -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials/PipeOrganCactus_BaseColor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/Materials/PipeOrganCactus_BaseColor.mat.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus.obj -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus.obj.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus_BaseColor.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus_BaseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Models/pipeorgancactus/PipeOrganCactus_BaseColor.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Prefabs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Prefabs/PlaceHere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Prefabs/PlaceHere.prefab -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Prefabs/PlaceHere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Prefabs/PlaceHere.prefab.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Prefabs/WebXRCameraSet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Prefabs/WebXRCameraSet.prefab -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Prefabs/WebXRCameraSet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Prefabs/WebXRCameraSet.prefab.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.unity -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert.unity.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/LightingData.asset -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/LightingData.asset.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-0_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-0_comp_light.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-0_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-0_comp_light.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-1_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-1_comp_light.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-1_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/Lightmap-1_comp_light.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-1.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-1.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-1.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-2.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-2.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-2.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-3.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-3.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-3.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-3.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-4.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-4.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-4.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-4.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-5.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-5.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-5.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-5.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-6.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-6.exr -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-6.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scenes/Desert/ReflectionProbe-6.exr.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/ControllerInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/ControllerInteraction.cs -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/ControllerInteraction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/ControllerInteraction.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/FPSCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/FPSCounter.cs -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/FPSCounter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/FPSCounter.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/MouseDragObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/MouseDragObject.cs -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/MouseDragObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/MouseDragObject.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/SceneHitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/SceneHitTest.cs -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/SceneHitTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/SceneHitTest.cs.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/WebXR.Samples.Scripts.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/WebXR.Samples.Scripts.asmdef -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Scripts/WebXR.Samples.Scripts.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Scripts/WebXR.Samples.Scripts.asmdef.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Sounds.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Sounds/wind-soundscape.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Sounds/wind-soundscape.mp3 -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Sounds/wind-soundscape.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Sounds/wind-soundscape.mp3.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/cube-sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/cube-sea.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/cube-sea.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/cube-sea.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/ground.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/ground.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/ground.png.meta -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/groundnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/groundnormal.png -------------------------------------------------------------------------------- /UnityProject/Assets/WebXR/Samples/Desert/Textures/groundnormal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Assets/WebXR/Samples/Desert/Textures/groundnormal.png.meta -------------------------------------------------------------------------------- /UnityProject/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Packages/manifest.json -------------------------------------------------------------------------------- /UnityProject/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Packages/packages-lock.json -------------------------------------------------------------------------------- /UnityProject/Packages/webxr: -------------------------------------------------------------------------------- 1 | ../../Packages/webxr -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /UnityProject/Unity.Rider.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Unity.Rider.Editor.csproj -------------------------------------------------------------------------------- /UnityProject/Unity.Timeline.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Unity.Timeline.Editor.csproj -------------------------------------------------------------------------------- /UnityProject/Unity.Timeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Unity.Timeline.csproj -------------------------------------------------------------------------------- /UnityProject/Unity.VSCode.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/Unity.VSCode.Editor.csproj -------------------------------------------------------------------------------- /UnityProject/UnityEditor.TestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/UnityEditor.TestRunner.csproj -------------------------------------------------------------------------------- /UnityProject/UnityEngine.TestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/UnityEngine.TestRunner.csproj -------------------------------------------------------------------------------- /UnityProject/UnityProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/UnityProject.sln -------------------------------------------------------------------------------- /UnityProject/WebXR.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/WebXR.Editor.csproj -------------------------------------------------------------------------------- /UnityProject/WebXR.Samples.Scripts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/WebXR.Samples.Scripts.csproj -------------------------------------------------------------------------------- /UnityProject/WebXR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/WebXR.csproj -------------------------------------------------------------------------------- /UnityProject/obj/Debug/Unity.Timeline.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/obj/Debug/Unity.Timeline.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /UnityProject/obj/Debug/UnityEditor.TestRunner.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/obj/Debug/UnityEditor.TestRunner.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /UnityProject/obj/Debug/UnityEngine.TestRunner.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/obj/Debug/UnityEngine.TestRunner.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /UnityProject/obj/Debug/WebXR.Samples.Scripts.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/obj/Debug/WebXR.Samples.Scripts.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /UnityProject/obj/Debug/WebXR.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allinreality/Unity-WebXR-Export/HEAD/UnityProject/obj/Debug/WebXR.csprojAssemblyReference.cache --------------------------------------------------------------------------------