You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Providing the { unadjustedMovement: true } option while calling requestPointerLock causes subsequent mouse move events to bypass the OS's mouse acceleration and sensitivity. This is useful for a couple reasons.
Many games would rather access raw mouse input, especially for controlling first-person camera movement, so that input acceleration can be disabled or controlled.
There is a longstanding Chrome bug where the occasional mouse movement event has an incorrect, very large delta value which causes the cursor to "teleport". Setting unadjustedMovement to true is a workaround for this.
but there are currently 2 issues I'm encountering with this solution.
Since requestPointerLock is already a stable feature, this generates 2 functions with the same name. Is there a way to override an existing function in unstable?
requestPointerLock returns undefined on unsupported browsers but Promise<undefined>? returns a parsing error. Any ideas why would this wouldn't work even though there are other functions that return optional values?
Any advice on these issues is welcome!
The text was updated successfully, but these errors were encountered:
Since requestPointerLock is already a stable feature, this generates 2 functions with the same name. Is there a way to override an existing function in unstable?
Remove the optional.
requestPointerLock returns undefined on unsupported browsers but Promise<undefined>? returns a parsing error. Any ideas why would this wouldn't work even though there are other functions that return optional values?
Probably just a limitation of the parser/generator. In any case I don't believe that this is something we would want in web-sys anyway, AFAIU the spec will change to return a Promise, so that's what we should align to (in this case a bit weird because it would be a breaking change, but we could still do it for request_pointer_lock_with_options() only).
Detecting and handling browser support is something that web-sys doesn't do, which needs an entirely separate general solution.
Motivation
Providing the
{ unadjustedMovement: true }
option while callingrequestPointerLock
causes subsequent mouse move events to bypass the OS's mouse acceleration and sensitivity. This is useful for a couple reasons.Proposed Solution
The spec for pointer lock options is unstable so it makes sense to mark this with the unstable flag.
This WebIDL is a start:
but there are currently 2 issues I'm encountering with this solution.
requestPointerLock
is already a stable feature, this generates 2 functions with the same name. Is there a way to override an existing function in unstable?undefined
on unsupported browsers butPromise<undefined>?
returns a parsing error. Any ideas why would this wouldn't work even though there are other functions that return optional values?Any advice on these issues is welcome!
The text was updated successfully, but these errors were encountered: