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:
2026-04-09 11:37:05 +08:00
parent 11ff11cd4e
commit 76eb9e2f7a
70 changed files with 3935 additions and 2 deletions
@@ -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, //播放文件
}
}