Bhaptics.Tac
1.2.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Bhaptics.Tac --version 1.2.1
NuGet\Install-Package Bhaptics.Tac -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bhaptics.Tac" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bhaptics.Tac --version 1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Bhaptics.Tac, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Bhaptics.Tac as a Cake Addin #addin nuget:?package=Bhaptics.Tac&version=1.2.1 // Install Bhaptics.Tac as a Cake Tool #tool nuget:?package=Bhaptics.Tac&version=1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
bHaptics haptic devices C# plugin
This project helps to utilize haptic devices in Unity and other C# based platform. Current version is 1.2.1
Prerequisite
- bHaptics Player has to be installed (Windows)
- The app can be found in bHaptics webpage: http://www.bhaptics.com
- The version of bHaptics Player should be higher or eqaul to 1.3.1
How to use codes
- You can download library (Bhaptics.Tac) with nuget manager Bhaptics.Tac
- To install Bhaptics.Tac, run the following command in the Package Manager Console
PM> Install-Package Bhaptics.Tac
or
- Clone the git then apply dll in src folder
$ git clone https://github.com/bhaptics/tac-sharp.git
Sample (Unity plug-in)
- Sample source codes for Unity is already available now.
- For more detail, you can find in unity-plugin
Websocket Communication V2
- request url : /v2/feedbacks
How to use
- Check out ProjectTest.cs in Bhaptics.Tac.Tests project
var hapticPlayer = new HapticPlayer((connected) =>
{
Debug.WriteLine("Connected");
});
hapticPlayer.Register(key, "BowShoot.tact");
hapticPlayer.StatusReceived += feedback =>
{
if (feedback.ActiveKeys.Count <= 0)
{
return;
}
};
Thread.Sleep(100);
hapticPlayer.SubmitRegistered(key);
Thread.Sleep(1000);
hapticPlayer.Dispose();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Bhaptics.Tac:
Repository | Stars |
---|---|
brandonmousseau/vhvr-mod
Adds VR support to the PC game Valheim
|
bhaptics tactile SDK for c#