Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InputManager: Removed pointerup check that prevented event from being processed. #12800

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Removed line that returned before intermediate pointerup was processed
  • Loading branch information
PolygonalSun committed Jul 26, 2022
commit 4bd28e81bd6ca8d726f9742efecf2d41a74de25d
4 changes: 0 additions & 4 deletions packages/dev/core/src/Inputs/scene.inputManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -798,10 +798,6 @@ export class InputManager {
}
}

if (!this._pointerCaptures[evt.pointerId] && evt.buttons > 0) {
return;
}

this._pointerCaptures[evt.pointerId] = false;
if (!scene.cameraToUseForPointers && !scene.activeCamera) {
return;
Expand Down