├── .editorconfig ├── .gitignore ├── Build ├── BuildCurrentBranch.bat ├── Instructions.txt ├── PackageCurrentBranch.bat ├── UnityPackageCurrentBranch.bat ├── UpdateUnityProject.bat └── Zip │ ├── LICENSE │ └── zip.exe ├── LicenseError.jpg ├── MITLicense.txt ├── README.md ├── Screenshot.jpg ├── SettingsAnyCPU.jpg ├── SettingsX64.jpg ├── SettingsX86.jpg ├── XInputDemo ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── XInputDemo.csproj ├── XInputDotNetPure.sln ├── XInputDotNetPure ├── GamePad.cs ├── Properties │ └── AssemblyInfo.cs ├── Utils.cs └── XInputDotNetPure.csproj ├── XInputInterface ├── Common.h ├── GamePad.cpp ├── GamePad.h └── XInputInterface.vcxproj ├── XInputReporter ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReporterState.cs ├── Resources │ ├── Microsoft Permissive License.rtf │ ├── background.png │ ├── connected_controller1.png │ ├── connected_controller2.png │ ├── connected_controller3.png │ ├── connected_controller4.png │ └── thumbstick.png └── XInputReporter.csproj ├── XInputUnity4 ├── Assets │ └── XInputDotNet │ │ ├── Examples │ │ ├── XInputTest.unity │ │ └── XInputTestCS.cs │ │ ├── MITLicense.txt │ │ └── Plugins │ │ ├── XInputDotNetPure.dll │ │ ├── x86 │ │ └── XInputInterface.dll │ │ └── x86_64 │ │ └── XInputInterface.dll ├── ProjectSettings │ ├── AudioManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshLayers.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── QualitySettings.asset │ ├── TagManager.asset │ └── TimeManager.asset └── XInputInterface.dll └── XInputUnity5 ├── Assets ├── XInputDotNet.meta └── XInputDotNet │ ├── Docs.txt │ ├── Docs.txt.meta │ ├── Examples.meta │ ├── Examples │ ├── XInputTest.unity │ ├── XInputTest.unity.meta │ ├── XInputTestCS.cs │ └── XInputTestCS.cs.meta │ ├── MITLicense.txt │ ├── MITLicense.txt.meta │ ├── Plugins.meta │ └── Plugins │ ├── XInputDotNetPure.dll │ ├── XInputDotNetPure.dll.meta │ ├── x86.meta │ ├── x86 │ ├── XInputInterface.dll │ └── XInputInterface.dll.meta │ ├── x86_64.meta │ └── x86_64 │ ├── XInputInterface.dll │ └── XInputInterface.dll.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset └── XInputUnity5.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/BuildCurrentBranch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/BuildCurrentBranch.bat -------------------------------------------------------------------------------- /Build/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/Instructions.txt -------------------------------------------------------------------------------- /Build/PackageCurrentBranch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/PackageCurrentBranch.bat -------------------------------------------------------------------------------- /Build/UnityPackageCurrentBranch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/UnityPackageCurrentBranch.bat -------------------------------------------------------------------------------- /Build/UpdateUnityProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/UpdateUnityProject.bat -------------------------------------------------------------------------------- /Build/Zip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/Zip/LICENSE -------------------------------------------------------------------------------- /Build/Zip/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Build/Zip/zip.exe -------------------------------------------------------------------------------- /LicenseError.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/LicenseError.jpg -------------------------------------------------------------------------------- /MITLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/MITLicense.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/Screenshot.jpg -------------------------------------------------------------------------------- /SettingsAnyCPU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/SettingsAnyCPU.jpg -------------------------------------------------------------------------------- /SettingsX64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/SettingsX64.jpg -------------------------------------------------------------------------------- /SettingsX86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/SettingsX86.jpg -------------------------------------------------------------------------------- /XInputDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDemo/Program.cs -------------------------------------------------------------------------------- /XInputDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XInputDemo/XInputDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDemo/XInputDemo.csproj -------------------------------------------------------------------------------- /XInputDotNetPure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDotNetPure.sln -------------------------------------------------------------------------------- /XInputDotNetPure/GamePad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDotNetPure/GamePad.cs -------------------------------------------------------------------------------- /XInputDotNetPure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDotNetPure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XInputDotNetPure/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDotNetPure/Utils.cs -------------------------------------------------------------------------------- /XInputDotNetPure/XInputDotNetPure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputDotNetPure/XInputDotNetPure.csproj -------------------------------------------------------------------------------- /XInputInterface/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputInterface/Common.h -------------------------------------------------------------------------------- /XInputInterface/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputInterface/GamePad.cpp -------------------------------------------------------------------------------- /XInputInterface/GamePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputInterface/GamePad.h -------------------------------------------------------------------------------- /XInputInterface/XInputInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputInterface/XInputInterface.vcxproj -------------------------------------------------------------------------------- /XInputReporter/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/MainForm.Designer.cs -------------------------------------------------------------------------------- /XInputReporter/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/MainForm.cs -------------------------------------------------------------------------------- /XInputReporter/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/MainForm.resx -------------------------------------------------------------------------------- /XInputReporter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Program.cs -------------------------------------------------------------------------------- /XInputReporter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XInputReporter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XInputReporter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Properties/Resources.resx -------------------------------------------------------------------------------- /XInputReporter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XInputReporter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Properties/Settings.settings -------------------------------------------------------------------------------- /XInputReporter/ReporterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/ReporterState.cs -------------------------------------------------------------------------------- /XInputReporter/Resources/Microsoft Permissive License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/Microsoft Permissive License.rtf -------------------------------------------------------------------------------- /XInputReporter/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/background.png -------------------------------------------------------------------------------- /XInputReporter/Resources/connected_controller1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/connected_controller1.png -------------------------------------------------------------------------------- /XInputReporter/Resources/connected_controller2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/connected_controller2.png -------------------------------------------------------------------------------- /XInputReporter/Resources/connected_controller3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/connected_controller3.png -------------------------------------------------------------------------------- /XInputReporter/Resources/connected_controller4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/connected_controller4.png -------------------------------------------------------------------------------- /XInputReporter/Resources/thumbstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/Resources/thumbstick.png -------------------------------------------------------------------------------- /XInputReporter/XInputReporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputReporter/XInputReporter.csproj -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/Examples/XInputTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/Examples/XInputTest.unity -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/Examples/XInputTestCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/Examples/XInputTestCS.cs -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/MITLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/MITLicense.txt -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll -------------------------------------------------------------------------------- /XInputUnity4/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /XInputUnity4/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /XInputUnity4/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity4/XInputInterface.dll -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Docs.txt: -------------------------------------------------------------------------------- 1 | "Up-to-date documentation at: https://github.com/speps/XInputDotNet" 2 | -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Docs.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Docs.txt.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Examples.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Examples/XInputTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Examples/XInputTest.unity -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Examples/XInputTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Examples/XInputTest.unity.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Examples/XInputTestCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Examples/XInputTestCS.cs -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Examples/XInputTestCS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Examples/XInputTestCS.cs.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/MITLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/MITLicense.txt -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/MITLicense.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/MITLicense.txt.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/XInputDotNetPure.dll.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86/XInputInterface.dll.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86_64.meta -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll -------------------------------------------------------------------------------- /XInputUnity5/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/Assets/XInputDotNet/Plugins/x86_64/XInputInterface.dll.meta -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /XInputUnity5/XInputUnity5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speps/XInputDotNet/HEAD/XInputUnity5/XInputUnity5.sln --------------------------------------------------------------------------------