Bhaptics.Tac 1.2.1

There is a newer version of this package available.
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
#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

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 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
Version Downloads Last updated
1.4.16 1,856 9/8/2020
1.4.15 1,392 9/8/2020
1.4.14 1,510 7/16/2020
1.4.5 1,564 7/3/2019
1.4.2 1,680 12/17/2018
1.3.0 1,936 4/4/2018
1.2.2 1,920 1/11/2018
1.2.1 1,973 12/13/2017
1.1.1 2,059 11/9/2017
1.1.0 1,929 11/3/2017
1.0.2 1,833 8/11/2017
1.0.0 1,906 6/15/2017

bhaptics tactile SDK for c#