feat: add Lofelt Nice Vibrations haptic system integration
- Import Lofelt SDK - Update Unity TextMesh Pro package to 3.0.9
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.IO;
|
||||
|
||||
namespace OCES.Haptic
|
||||
{
|
||||
public interface IBinarySerializable
|
||||
{
|
||||
void DeSerialize(BinaryReader reader);
|
||||
void Serialize(BinaryWriter writer);
|
||||
}
|
||||
|
||||
public enum HapticType
|
||||
{
|
||||
Preset = 0, //播放预制
|
||||
Transient = 1, //播放瞬时
|
||||
Continuous = 2, //播放连续
|
||||
Advance = 3, //播放文件
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user