mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Check if vibration duration is > 0 on Android
This commit is contained in:
parent
0a001afec5
commit
47f338fc12
1 changed files with 1 additions and 1 deletions
|
|
@ -317,7 +317,7 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
|
||||||
@SuppressLint("MissingPermission")
|
@SuppressLint("MissingPermission")
|
||||||
@Keep
|
@Keep
|
||||||
private void vibrate(int durationMs) {
|
private void vibrate(int durationMs) {
|
||||||
if (requestPermission("VIBRATE")) {
|
if (durationMs > 0 && requestPermission("VIBRATE")) {
|
||||||
Vibrator v = (Vibrator)getContext().getSystemService(Context.VIBRATOR_SERVICE);
|
Vibrator v = (Vibrator)getContext().getSystemService(Context.VIBRATOR_SERVICE);
|
||||||
if (v != null) {
|
if (v != null) {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue