From 130e715ab9a86c7363424e25df85e68ab52e85ec Mon Sep 17 00:00:00 2001 From: pattlebass <49322676+pattlebass@users.noreply.github.com> Date: Wed, 27 Jul 2022 15:35:01 +0300 Subject: HTML5: Add support for `Input.vibrate_handheld()` --- platform/javascript/js/libs/library_godot_input.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'platform/javascript/js/libs') 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'); -- cgit v1.2.3