react-xr
react-xr copied to clipboard
🤳 VR/AR with react-three-fiber
for reference https://github.com/pmndrs/react-xr/blob/master/src/XR.tsx#L315-L324 ```jsx export const XRCanvas = React.forwardRef(function XRCanvas( { foveation, referenceSpace, onSessionStart, onSessionEnd, onVisibilityChange, onInputSourcesChange, children, ...rest }, forwardedRef ) { return ( {children} ) }) ``` i...
I am learning to switch from A-frame to [RTF's Ecosystem](https://github.com/pmndrs/react-three-fiber#ecosystem). In `@react-three/xr` 's README.md, I found an [ar 's example](https://codesandbox.io/s/react-xr-simple-ar-demo-8w8hm), which is great. I believe that AR interaction is already...
Grabbing
Since this library contains the pointing interaction, I think a grabbing interaction would be a very good fit to implement in here. Especially cause both Interaction paradigms should possibly coexist...
Hi, I would like to implement pinch to zoom, Is it something possible with this lib ? Maybe with `useXREvent` Thank you
I have created hit test reticles with a flat ring in Three and webXR without React. One thing I am able to do by using the Matrix4 returned by the...
When wrapping large/ complex models in the very useful Interactive component the CPU usage increases a lot. This causes stuttering in VR headsets and laptop fans to go crazy. This...
We've been building a VR game with `@react-three/vr` which is an absolute blast. We have found some issues where GSAP and framer-motion-3d don't work. That may be because they use...
When I click Enter AR on my phone the web page displays in all the screen but the camera don´t show up and in the browser appear the notification that...
Hi, I'm currently writing some XR abstractions for vue and trying to use this library as a basis. I have some base code working with entering VR immersive mode when...
Hello, I'm fairly new to three.js and currently building a fake project to help me learn. I'm looking for a bit of guidance for an issue I'm having while in...