diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-27 22:19:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 22:19:37 +0200 |
commit | 0dcf679bdc9bde359d8fd5e486eeefc56f754ec8 (patch) | |
tree | 14e162e4421d417cd78d5906d130c4b8a9d390ae /platform/javascript/js/libs | |
parent | 20fefe3ae9ad60daff20bccaca9f08d129787460 (diff) | |
parent | 130e715ab9a86c7363424e25df85e68ab52e85ec (diff) |
Merge pull request #63548 from pattlebass/master-html5-vibrate
Diffstat (limited to 'platform/javascript/js/libs')
-rw-r--r-- | platform/javascript/js/libs/library_godot_input.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/platform/javascript/js/libs/library_godot_input.js b/platform/javascript/js/libs/library_godot_input.js index 1e64c260f8..51571d64a2 100644 --- a/platform/javascript/js/libs/library_godot_input.js +++ b/platform/javascript/js/libs/library_godot_input.js @@ -534,6 +534,15 @@ const GodotInput = { GodotRuntime.free(ptr); }, false); }, + + godot_js_input_vibrate_handheld__sig: 'vi', + godot_js_input_vibrate_handheld: function (p_duration_ms) { + if (typeof navigator.vibrate !== 'function') { + GodotRuntime.print('This browser does not support vibration.'); + } else { + navigator.vibrate(p_duration_ms); + } + }, }; autoAddDeps(GodotInput, '$GodotInput'); |