facebook twitter hatena line email

Unity/Csharp/バイブ

提供: 初心者エンジニアの簡易メモ
2018年6月27日 (水) 01:09時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==単純バイブ機能== void Start () { if (SystemInfo.supportsVibration) { print ("振動対応"); Handheld.Vibrate(); } else { print ("振動非対応")...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

単純バイブ機能

void Start () {
	if (SystemInfo.supportsVibration) {
		print ("振動対応");
		Handheld.Vibrate();
	} else {
		print ("振動非対応");
	}
}

参考:http://tasogare-games.hatenablog.jp/entry/20150611/1434020838