We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Similar story to #3315 - the code attempts to access e.offsetX here: https://github.com/pmndrs/react-three-fiber/blob/v8.16.8/packages/fiber/src/core/events.ts#L175-L176 which does not exist on react-native events.
e.offsetX
This in turn causes the calculateDistance calculation to always return NaN and if (delta <= 2) to never match.
calculateDistance
NaN
if (delta <= 2)
The text was updated successfully, but these errors were encountered:
Is there any update about this? I can fix it
cc: @CodyJasonBennett
Sorry, something went wrong.
No, generally updates occur naturally in their pertinent issues; you don't have to ping me for an update.
I'm not sure this is exactly true of a diagnosis, or perhaps we're not mutating the right reference here.
react-three-fiber/packages/fiber/src/native/Canvas.tsx
Lines 143 to 156 in 3200547
No branches or pull requests
Similar story to #3315 - the code attempts to access
e.offsetX
here:https://github.com/pmndrs/react-three-fiber/blob/v8.16.8/packages/fiber/src/core/events.ts#L175-L176
which does not exist on react-native events.
This in turn causes the
calculateDistance
calculation to always returnNaN
andif (delta <= 2)
to never match.The text was updated successfully, but these errors were encountered: