├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── BSIndexHapticFix.sln ├── BSIndexHapticFix ├── BSIndexHapticFix.csproj ├── Components │ └── HapticEmulator.cs ├── Directory.Build.props ├── Directory.Build.targets ├── HarmonyPatches │ └── POpenVRHelper_TriggerHapticPulse.cs ├── Plugin.cs ├── Properties │ └── AssemblyInfo.cs └── manifest.json ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/.gitignore -------------------------------------------------------------------------------- /BSIndexHapticFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix.sln -------------------------------------------------------------------------------- /BSIndexHapticFix/BSIndexHapticFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/BSIndexHapticFix.csproj -------------------------------------------------------------------------------- /BSIndexHapticFix/Components/HapticEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/Components/HapticEmulator.cs -------------------------------------------------------------------------------- /BSIndexHapticFix/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/Directory.Build.props -------------------------------------------------------------------------------- /BSIndexHapticFix/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/Directory.Build.targets -------------------------------------------------------------------------------- /BSIndexHapticFix/HarmonyPatches/POpenVRHelper_TriggerHapticPulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/HarmonyPatches/POpenVRHelper_TriggerHapticPulse.cs -------------------------------------------------------------------------------- /BSIndexHapticFix/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/Plugin.cs -------------------------------------------------------------------------------- /BSIndexHapticFix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BSIndexHapticFix/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/BSIndexHapticFix/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BSIndexHapticFix/HEAD/README.md --------------------------------------------------------------------------------