Merge pull request #5600 from mozilla/fix-pen-on-mobile

Fix pen on touchscreen devices
This commit is contained in:
Dominick D'Aniello 2022-07-20 15:21:33 -07:00 коммит произвёл GitHub
Родитель 4adbc6ce66 535c9912e3
Коммит e0fa6022f0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -41,7 +41,7 @@ const getPlayerCamera = function() {
function shouldMoveCursor(touch, rect, raycaster) {
const isCursorGrabbing = anyEntityWith(APP.world, HeldRemoteRight);
if (isCursorGrabbing) return false;
if (isCursorGrabbing) return true;
// Check if this touch might result in an interact or grab eventually
const rawIntersections = [];