Unity/Csharp/バイブ
提供: 初心者エンジニアの簡易メモ
単純バイブ機能
void Start () {
if (SystemInfo.supportsVibration) {
print ("振動対応");
Handheld.Vibrate();
} else {
print ("振動非対応");
}
}
参考:http://tasogare-games.hatenablog.jp/entry/20150611/1434020838
