diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-30 12:20:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 12:20:00 +0100 |
commit | 2d118bd8b881fe9658e70eb8dc4fa7a6efac41a3 (patch) | |
tree | d73311ca4095537f53357236543ba8d1a0f74f33 /platform/javascript/js | |
parent | 75d1ae4dac9e34f569c37b465883153bc92fab69 (diff) | |
parent | 470496d8d40e2f476fac4f72c0b69748b5370936 (diff) |
Merge pull request #55466 from Faless/js/4.x_input_fix_touch
Diffstat (limited to 'platform/javascript/js')
-rw-r--r-- | platform/javascript/js/libs/library_godot_input.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/javascript/js/libs/library_godot_input.js b/platform/javascript/js/libs/library_godot_input.js index 3c1c05e44e..945dbba902 100644 --- a/platform/javascript/js/libs/library_godot_input.js +++ b/platform/javascript/js/libs/library_godot_input.js @@ -424,9 +424,9 @@ const GodotInput = { for (let i = 0; i < touches.length; i++) { const touch = touches[i]; const pos = GodotInput.computePosition(touch, rect); - GodotRuntime.setHeapValue(coords + (i * 2), pos[0], 'double'); - GodotRuntime.setHeapValue(coords + (i * 2 + 8), pos[1], 'double'); - GodotRuntime.setHeapValue(ids + i, touch.identifier, 'i32'); + GodotRuntime.setHeapValue(coords + (i * 2) * 8, pos[0], 'double'); + GodotRuntime.setHeapValue(coords + (i * 2 + 1) * 8, pos[1], 'double'); + GodotRuntime.setHeapValue(ids + i * 4, touch.identifier, 'i32'); } func(type, touches.length); if (evt.cancelable) { |