├── .github └── workflows │ └── build-binaries.yml ├── .gitignore ├── .vscode └── c_cpp_properties.json ├── CMakeLists.txt ├── CommonHeaders ├── CommonTypes.h ├── OpenVR │ ├── openvr.h │ ├── openvr_api.cs │ ├── openvr_api.json │ ├── openvr_capi.h │ └── openvr_driver.h ├── ProviderInterface │ ├── IUnityEventQueue.h │ ├── IUnityGraphics.h │ ├── IUnityGraphicsD3D11.h │ ├── IUnityGraphicsD3D12.h │ ├── IUnityGraphicsMetal.h │ ├── IUnityGraphicsVulkan.h │ ├── IUnityInterface.h │ ├── IUnityProfilerCallbacks.h │ ├── IUnityRenderingExtensions.h │ ├── IUnityShaderCompilerAccess.h │ ├── IUnityXRAudio.h │ ├── IUnityXRDisplay.h │ ├── IUnityXRDisplayShadingRateExt.h │ ├── IUnityXRInput.h │ ├── IUnityXRMeshing.h │ ├── IUnityXRPreInit.h │ ├── IUnityXRStats.h │ ├── IUnityXRTrace.h │ ├── LICENSE.md │ ├── UnitySubsystemTypes.h │ ├── UnityTypes.h │ ├── UnityXRDisplayStats.h │ ├── UnityXRSubsystemTypes.h │ ├── UnityXRTypes.h │ ├── XRMath.cpp │ └── XRMath.h ├── Singleton.h ├── UnityInterfaces.cpp └── UnityInterfaces.h ├── LICENSE ├── PackageMetaFiles ├── x64 │ └── XRSDKOpenVR.dll.meta └── x86 │ └── XRSDKOpenVR.dll.meta ├── Providers ├── Display │ ├── Display.cpp │ └── Display.h ├── Input │ ├── Input.cpp │ └── Input.h ├── OpenVRProviderContext.h ├── OpenVRSystem.cpp ├── OpenVRSystem.h ├── UserProjectSettings.cpp ├── UserProjectSettings.h └── dllmain.cpp ├── README.md ├── ThirdParty └── vulkan │ ├── vk_icd.h │ ├── vk_layer.h │ ├── vk_platform.h │ ├── vk_sdk_platform.h │ ├── vulkan.h │ ├── vulkan.hpp │ ├── vulkan_android.h │ ├── vulkan_beta.h │ ├── vulkan_core.h │ ├── vulkan_directfb.h │ ├── vulkan_fuchsia.h │ ├── vulkan_ggp.h │ ├── vulkan_ios.h │ ├── vulkan_macos.h │ ├── vulkan_metal.h │ ├── vulkan_vi.h │ ├── vulkan_wayland.h │ ├── vulkan_win32.h │ ├── vulkan_xcb.h │ ├── vulkan_xlib.h │ └── vulkan_xlib_xrandr.h ├── com.valve.openvr ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Documentation~ │ └── com.valvesoftware.unity.openvr.md ├── Editor.meta ├── Editor │ ├── OpenVRBuildProcessor.cs │ ├── OpenVRBuildProcessor.cs.meta │ ├── OpenVRLoaderMetadata.cs │ ├── OpenVRLoaderMetadata.cs.meta │ ├── OpenVRSettingsCopier.cs │ ├── OpenVRSettingsCopier.cs.meta │ ├── OpenVRSettingsEditor.cs │ ├── OpenVRSettingsEditor.cs.meta │ ├── Unity.XR.OpenVR.Editor.asmdef │ └── Unity.XR.OpenVR.Editor.asmdef.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime │ ├── DeviceLayouts.cs │ ├── DeviceLayouts.cs.meta │ ├── OpenVREvents.cs │ ├── OpenVREvents.cs.meta │ ├── OpenVRHelpers.cs │ ├── OpenVRHelpers.cs.meta │ ├── OpenVRLoader.cs │ ├── OpenVRLoader.cs.meta │ ├── OpenVRSettings.cs │ ├── OpenVRSettings.cs.meta │ ├── Unity.XR.OpenVR.asmdef │ ├── Unity.XR.OpenVR.asmdef.meta │ ├── UnitySubsystemsManifest.json │ ├── UnitySubsystemsManifest.json.meta │ ├── openvr_api.cs │ ├── openvr_api.cs.meta │ ├── x64.meta │ ├── x64 │ │ ├── XRSDKOpenVR.dll │ │ ├── XRSDKOpenVR.dll.meta │ │ ├── XRSDKOpenVR.dll.sig │ │ ├── XRSDKOpenVR.dll.sig.meta │ │ ├── XRSDKOpenVR.exp │ │ ├── XRSDKOpenVR.exp.meta │ │ ├── XRSDKOpenVR.lib │ │ ├── XRSDKOpenVR.lib.meta │ │ ├── XRSDKOpenVR.pdb.meta │ │ ├── libXRSDKOpenVR.so │ │ ├── libXRSDKOpenVR.so.meta │ │ ├── libopenvr_api.so │ │ ├── libopenvr_api.so.dbg │ │ ├── libopenvr_api.so.dbg.meta │ │ ├── libopenvr_api.so.meta │ │ ├── openvr_api.dll │ │ ├── openvr_api.dll.meta │ │ ├── openvr_api.dll.sig │ │ ├── openvr_api.dll.sig.meta │ │ ├── openvr_api.lib │ │ ├── openvr_api.lib.meta │ │ ├── openvr_api.pdb │ │ ├── openvr_api.pdb.meta │ │ ├── ucrtbased.dll │ │ ├── ucrtbased.dll.meta │ │ ├── vc141.pdb │ │ ├── vc141.pdb.meta │ │ ├── vc142.pdb │ │ └── vc142.pdb.meta │ ├── x86.meta │ └── x86 │ │ ├── XRSDKOpenVR.dll │ │ ├── XRSDKOpenVR.dll.meta │ │ ├── XRSDKOpenVR.dll.sig │ │ ├── XRSDKOpenVR.dll.sig.meta │ │ ├── XRSDKOpenVR.exp │ │ ├── XRSDKOpenVR.exp.meta │ │ ├── XRSDKOpenVR.lib │ │ ├── XRSDKOpenVR.lib.meta │ │ ├── XRSDKOpenVR.pdb │ │ ├── XRSDKOpenVR.pdb.meta │ │ ├── libopenvr_api.so │ │ ├── libopenvr_api.so.dbg │ │ ├── libopenvr_api.so.dbg.meta │ │ ├── libopenvr_api.so.meta │ │ ├── openvr_api.dll │ │ ├── openvr_api.dll.meta │ │ ├── openvr_api.dll.sig │ │ ├── openvr_api.dll.sig.meta │ │ ├── openvr_api.lib │ │ ├── openvr_api.lib.meta │ │ ├── openvr_api.pdb │ │ ├── openvr_api.pdb.meta │ │ ├── ucrtbased.dll │ │ ├── ucrtbased.dll.meta │ │ ├── vc141.pdb │ │ ├── vc141.pdb.meta │ │ ├── vc142.pdb │ │ └── vc142.pdb.meta ├── package.json └── package.json.meta ├── lib ├── x64 │ ├── libopenvr_api.so │ ├── libopenvr_api.so.dbg │ ├── openvr_api.dll │ ├── openvr_api.dll.meta │ ├── openvr_api.dll.sig │ ├── openvr_api.lib │ └── openvr_api.pdb └── x86 │ ├── libopenvr_api.so │ ├── libopenvr_api.so.dbg │ ├── openvr_api.dll │ ├── openvr_api.dll.meta │ ├── openvr_api.dll.sig │ ├── openvr_api.lib │ └── openvr_api.pdb ├── libopenvr_api.so ├── libopenvr_api.so.dbg └── unity_plugin.def /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CommonHeaders/CommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/CommonTypes.h -------------------------------------------------------------------------------- /CommonHeaders/OpenVR/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/OpenVR/openvr.h -------------------------------------------------------------------------------- /CommonHeaders/OpenVR/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/OpenVR/openvr_api.cs -------------------------------------------------------------------------------- /CommonHeaders/OpenVR/openvr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/OpenVR/openvr_api.json -------------------------------------------------------------------------------- /CommonHeaders/OpenVR/openvr_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/OpenVR/openvr_capi.h -------------------------------------------------------------------------------- /CommonHeaders/OpenVR/openvr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/OpenVR/openvr_driver.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityEventQueue.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityGraphics.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityGraphicsD3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityGraphicsD3D11.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityGraphicsD3D12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityGraphicsD3D12.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityGraphicsMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityGraphicsMetal.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityGraphicsVulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityGraphicsVulkan.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityInterface.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityProfilerCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityProfilerCallbacks.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityRenderingExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityRenderingExtensions.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityShaderCompilerAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityShaderCompilerAccess.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRAudio.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRDisplay.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRDisplayShadingRateExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRDisplayShadingRateExt.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRInput.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRMeshing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRMeshing.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRPreInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRPreInit.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRStats.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/IUnityXRTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/IUnityXRTrace.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/LICENSE.md -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/UnitySubsystemTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/UnitySubsystemTypes.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/UnityTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/UnityTypes.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/UnityXRDisplayStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/UnityXRDisplayStats.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/UnityXRSubsystemTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/UnityXRSubsystemTypes.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/UnityXRTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/UnityXRTypes.h -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/XRMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/XRMath.cpp -------------------------------------------------------------------------------- /CommonHeaders/ProviderInterface/XRMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/ProviderInterface/XRMath.h -------------------------------------------------------------------------------- /CommonHeaders/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/Singleton.h -------------------------------------------------------------------------------- /CommonHeaders/UnityInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/UnityInterfaces.cpp -------------------------------------------------------------------------------- /CommonHeaders/UnityInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/CommonHeaders/UnityInterfaces.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageMetaFiles/x64/XRSDKOpenVR.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/PackageMetaFiles/x64/XRSDKOpenVR.dll.meta -------------------------------------------------------------------------------- /PackageMetaFiles/x86/XRSDKOpenVR.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/PackageMetaFiles/x86/XRSDKOpenVR.dll.meta -------------------------------------------------------------------------------- /Providers/Display/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/Display/Display.cpp -------------------------------------------------------------------------------- /Providers/Display/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/Display/Display.h -------------------------------------------------------------------------------- /Providers/Input/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/Input/Input.cpp -------------------------------------------------------------------------------- /Providers/Input/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/Input/Input.h -------------------------------------------------------------------------------- /Providers/OpenVRProviderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/OpenVRProviderContext.h -------------------------------------------------------------------------------- /Providers/OpenVRSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/OpenVRSystem.cpp -------------------------------------------------------------------------------- /Providers/OpenVRSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/OpenVRSystem.h -------------------------------------------------------------------------------- /Providers/UserProjectSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/UserProjectSettings.cpp -------------------------------------------------------------------------------- /Providers/UserProjectSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/UserProjectSettings.h -------------------------------------------------------------------------------- /Providers/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/Providers/dllmain.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vk_icd.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vk_layer.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vk_platform.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vk_sdk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vk_sdk_platform.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_android.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_beta.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_directfb.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_fuchsia.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_macos.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_metal.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_wayland.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_win32.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_xlib.h -------------------------------------------------------------------------------- /ThirdParty/vulkan/vulkan_xlib_xrandr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/ThirdParty/vulkan/vulkan_xlib_xrandr.h -------------------------------------------------------------------------------- /com.valve.openvr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/CHANGELOG.md -------------------------------------------------------------------------------- /com.valve.openvr/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/CHANGELOG.md.meta -------------------------------------------------------------------------------- /com.valve.openvr/Documentation~/com.valvesoftware.unity.openvr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Documentation~/com.valvesoftware.unity.openvr.md -------------------------------------------------------------------------------- /com.valve.openvr/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor.meta -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRBuildProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRBuildProcessor.cs -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRBuildProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRBuildProcessor.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRLoaderMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRLoaderMetadata.cs -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRLoaderMetadata.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRLoaderMetadata.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRSettingsCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRSettingsCopier.cs -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRSettingsCopier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRSettingsCopier.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRSettingsEditor.cs -------------------------------------------------------------------------------- /com.valve.openvr/Editor/OpenVRSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/OpenVRSettingsEditor.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Editor/Unity.XR.OpenVR.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/Unity.XR.OpenVR.Editor.asmdef -------------------------------------------------------------------------------- /com.valve.openvr/Editor/Unity.XR.OpenVR.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Editor/Unity.XR.OpenVR.Editor.asmdef.meta -------------------------------------------------------------------------------- /com.valve.openvr/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/LICENSE.md -------------------------------------------------------------------------------- /com.valve.openvr/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/LICENSE.md.meta -------------------------------------------------------------------------------- /com.valve.openvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/README.md -------------------------------------------------------------------------------- /com.valve.openvr/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/README.md.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/DeviceLayouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/DeviceLayouts.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/DeviceLayouts.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/DeviceLayouts.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVREvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVREvents.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVREvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVREvents.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRHelpers.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRHelpers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRHelpers.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRLoader.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRLoader.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRSettings.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/OpenVRSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/OpenVRSettings.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/Unity.XR.OpenVR.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/Unity.XR.OpenVR.asmdef -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/Unity.XR.OpenVR.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/Unity.XR.OpenVR.asmdef.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/UnitySubsystemsManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/UnitySubsystemsManifest.json -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/UnitySubsystemsManifest.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/UnitySubsystemsManifest.json.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/openvr_api.cs -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/openvr_api.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/openvr_api.cs.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.sig -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.sig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.dll.sig.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.exp -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.exp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.exp.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.lib -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.lib.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/XRSDKOpenVR.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/XRSDKOpenVR.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libXRSDKOpenVR.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libXRSDKOpenVR.so -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libXRSDKOpenVR.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libXRSDKOpenVR.so.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libopenvr_api.so -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libopenvr_api.so.dbg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libopenvr_api.so.dbg.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/libopenvr_api.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/libopenvr_api.so.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.dll.sig -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.dll.sig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.dll.sig.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.lib -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.lib.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/openvr_api.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/openvr_api.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/ucrtbased.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/ucrtbased.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/ucrtbased.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/ucrtbased.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/vc141.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/vc141.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/vc141.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/vc142.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x64/vc142.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x64/vc142.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.sig -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.sig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.dll.sig.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.exp -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.exp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.exp.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.lib -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.lib.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/XRSDKOpenVR.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/XRSDKOpenVR.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/libopenvr_api.so -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/libopenvr_api.so.dbg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/libopenvr_api.so.dbg.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/libopenvr_api.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/libopenvr_api.so.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.dll.sig -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.dll.sig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.dll.sig.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.lib -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.lib.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/openvr_api.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/openvr_api.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/ucrtbased.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/ucrtbased.dll -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/ucrtbased.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/ucrtbased.dll.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/vc141.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/vc141.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/vc141.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/vc142.pdb -------------------------------------------------------------------------------- /com.valve.openvr/Runtime/x86/vc142.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/Runtime/x86/vc142.pdb.meta -------------------------------------------------------------------------------- /com.valve.openvr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/package.json -------------------------------------------------------------------------------- /com.valve.openvr/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/com.valve.openvr/package.json.meta -------------------------------------------------------------------------------- /lib/x64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/libopenvr_api.so -------------------------------------------------------------------------------- /lib/x64/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /lib/x64/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/openvr_api.dll -------------------------------------------------------------------------------- /lib/x64/openvr_api.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/openvr_api.dll.meta -------------------------------------------------------------------------------- /lib/x64/openvr_api.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/openvr_api.dll.sig -------------------------------------------------------------------------------- /lib/x64/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/openvr_api.lib -------------------------------------------------------------------------------- /lib/x64/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x64/openvr_api.pdb -------------------------------------------------------------------------------- /lib/x86/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/libopenvr_api.so -------------------------------------------------------------------------------- /lib/x86/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /lib/x86/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/openvr_api.dll -------------------------------------------------------------------------------- /lib/x86/openvr_api.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/openvr_api.dll.meta -------------------------------------------------------------------------------- /lib/x86/openvr_api.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/openvr_api.dll.sig -------------------------------------------------------------------------------- /lib/x86/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/openvr_api.lib -------------------------------------------------------------------------------- /lib/x86/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/lib/x86/openvr_api.pdb -------------------------------------------------------------------------------- /libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/libopenvr_api.so -------------------------------------------------------------------------------- /libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /unity_plugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/unity-xr-plugin/HEAD/unity_plugin.def --------------------------------------------------------------------------------