Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/CurvedUI/CUI_ViveHapticPulse.cs
2026-02-21 16:45:37 +08:00

24 lines
325 B
C#

using UnityEngine;
namespace CurvedUI
{
public class CUI_ViveHapticPulse : MonoBehaviour
{
private float PulseStrength;
private void Start()
{
PulseStrength = 1f;
}
public void SetPulseStrength(float newStr)
{
PulseStrength = Mathf.Clamp(newStr, 0f, 1f);
}
public void TriggerPulse()
{
}
}
}