Files

11 lines
149 B
C#

using UnityEngine;
public class Tester : MonoBehaviour
{
void Start()
{
Vibrator.Vibrate();
Vibrator.Vibrate(1000);
}
}