Interhaptics SDK for Unity 1.6
Loading...
Searching...
No Matches
IHapticProvider.cs
Go to the documentation of this file.
1/* ​
2* Copyright (c) 2023 Go Touch VR SAS. All rights reserved. ​
3* ​
4*/
5
7{
8
9 public interface IHapticProvider
10 {
11
12 #region HAPTIC CHARACTERISTICS
17 string DisplayName();
22 string Description();
27 string Manufacturer();
32 string Version();
33 #endregion
34
35
36 #region PROVIDER SETUP
41 bool Init();
46 bool Clean();
47 #endregion
48
49
50 #region PROVIDER RENDERING
55 bool IsPresent();
56
58 #endregion
59
60 }
61
62}
bool IsPresent()
Define if the tracking APIs are available or not.
string Description()
Define the tracking description.
string Version()
Define the provider version.
string DisplayName()
Define the display name to use for the device.
bool Init()
Initialize the provider.
string Manufacturer()
Define the Manufacturer.
bool Clean()
Clean the provider and dispose resources allowed.