Nice Vibrations
android/iOS端末の振動(Vibrations)を簡単に使う事のできるアセットです。
使い方は簡単で、
まずはusing宣言。
using MoreMountains.NiceVibrations;
そして場面に応じて以下を呼び出すだけです。
iOSもAndroidもコードが同じなので簡単です。
MMVibrationManager.Haptic (HapticTypes.Selection);
MMVibrationManager.Haptic (HapticTypes.Success);
MMVibrationManager.Haptic (HapticTypes.Warning);
MMVibrationManager.Haptic (HapticTypes.Failure);
MMVibrationManager.Haptic (HapticTypes.LightImpact);
MMVibrationManager.Haptic (HapticTypes.MediumImpact);
MMVibrationManager.Haptic (HapticTypes.HeavyImpact);
・Selection : a light vibration on Android, and a light impact on iOS
選択時の軽い振動
・Success : a light then heavy vibration on Android, and a success impact on iOS
成功時の少し重い振動
・Warning : a heavy then medium vibration on Android, and a warning impact on iOS
警告時の中程度の振動
・Failure : a medium / heavy / heavy / light vibration pattern on Android, and a failure impact on iOS
障害児の中~重めの振動
・Light : a light impact on iOS and a short and light vibration on Android.
短くて軽い振動
・Medium : a medium impact on iOS and a medium and regular vibration on Android
中程度の振動
・Heavy : a heavy impact on iOS and a long and heavy vibration on Android
重い振動
コメント